congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
PropertyDefinitionEnumeration.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.rhq.core.domain.configuration.definition.PropertyDefinitionEnumeration
constructor

Best Java code snippets using org.rhq.core.domain.configuration.definition.PropertyDefinitionEnumeration.<init> (Showing top 5 results out of 315)

origin: org.rhq/rhq-enterprise-server

private void processPropertyOptionsSource(Resource resource, Resource baseResource, PropertyDefinitionSimple pds,
  PropertyOptionsSource.TargetType tt, String expression, Pattern filterPattern, Resource foundResource) {
  if (tt == PropertyOptionsSource.TargetType.RESOURCE) {
    String name = foundResource.getName();
    // filter if the user provided a filter
    if (filterPattern != null) {
      Matcher m = filterPattern.matcher(name);
      if (m.matches()) {
        PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, "" + name);
        pds.getEnumeratedValues().add(pde);
      }
    } else { // Filter is null -> none provided -> do not filter
      PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, "" + name);
      pds.getEnumeratedValues().add(pde);
    }
  } else if (tt == PropertyOptionsSource.TargetType.CONFIGURATION) {
    //  for configuration we need to drill down into the resource configuration
    if (!handleConfigurationTarget(resource, baseResource, pds, expression, foundResource))
      return;
  }
}
origin: org.rhq/rhq-enterprise-server

String name = ps.getStringValue();
if (name != null) {
  PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, name);
  pds.getEnumeratedValues().add(pde);
String name = propertySimple.getStringValue();
if (name != null) {
  PropertyDefinitionEnumeration pde = new PropertyDefinitionEnumeration(name, name);
  pds.getEnumeratedValues().add(pde);
origin: org.rhq/rhq-core-domain

private static PropertyDefinitionSimple createBasedirValueContext(boolean readOnly) {
  String name = PROP_BASEDIR_VALUECONTEXT;
  String description = "Identifies where the named value can be found.";
  boolean required = true;
  PropertySimpleType type = PropertySimpleType.STRING;
  PropertyDefinitionSimple pd = new PropertyDefinitionSimple(name, description, required, type);
  pd.setDisplayName("Value Context");
  pd.setReadOnly(readOnly);
  pd.setSummary(true);
  pd.setOrder(0);
  PropertyDefinitionEnumeration pcEnum = new PropertyDefinitionEnumeration(
    BaseDirValueContext.pluginConfiguration.name(), BaseDirValueContext.pluginConfiguration.name());
  pcEnum.setOrderIndex(0);
  PropertyDefinitionEnumeration rcEnum = new PropertyDefinitionEnumeration(
    BaseDirValueContext.resourceConfiguration.name(), BaseDirValueContext.resourceConfiguration.name());
  rcEnum.setOrderIndex(1);
  PropertyDefinitionEnumeration mtEnum = new PropertyDefinitionEnumeration(BaseDirValueContext.measurementTrait
    .name(), BaseDirValueContext.measurementTrait.name());
  mtEnum.setOrderIndex(2);
  PropertyDefinitionEnumeration fsEnum = new PropertyDefinitionEnumeration(BaseDirValueContext.fileSystem.name(),
    BaseDirValueContext.fileSystem.name());
  fsEnum.setOrderIndex(3);
  ArrayList<PropertyDefinitionEnumeration> pdEnums = new ArrayList<PropertyDefinitionEnumeration>(4);
  pdEnums.add(pcEnum);
  pdEnums.add(rcEnum);
  pdEnums.add(mtEnum);
  pdEnums.add(fsEnum);
  pd.setEnumeratedValues(pdEnums, false);
  return pd;
}
origin: org.rhq/rhq-core-client-api

private static List<PropertyDefinitionEnumeration> parsePropertyOptions(PropertyDefinitionSimple parentProperty,
  PropertyOptions options) {
  List<PropertyDefinitionEnumeration> results = new ArrayList<PropertyDefinitionEnumeration>();
  for (Option option : options.getOption()) {
    String name = option.getName();
    if (name == null) {
      name = option.getValue();
    }
    PropertyDefinitionEnumeration enumeration = new PropertyDefinitionEnumeration(name, option.getValue());
    parentProperty.addEnumeratedValues(enumeration);
  }
  parentProperty.setAllowCustomEnumeratedValue(options.isAllowCustomValue());
  return results;
}
origin: org.rhq/rhq-core-domain

pd.setConfigurationDefinition(configDef);
PropertyDefinitionEnumeration normalEnum = new PropertyDefinitionEnumeration(DriftHandlingMode.normal.name(),
  DriftHandlingMode.normal.name());
normalEnum.setOrderIndex(0);
PropertyDefinitionEnumeration plannedEnum = new PropertyDefinitionEnumeration(DriftHandlingMode.plannedChanges
  .name(), DriftHandlingMode.plannedChanges.name());
plannedEnum.setOrderIndex(1);
org.rhq.core.domain.configuration.definitionPropertyDefinitionEnumeration<init>

Popular methods of PropertyDefinitionEnumeration

  • getName
  • getValue
  • equals
  • setName
  • setOrderIndex
  • setPropertyDefinitionSimple
  • setValue

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (Timer)
  • setContentView (Activity)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now