congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
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

  • Making http requests using okhttp
  • putExtra (Intent)
  • getSupportFragmentManager (FragmentActivity)
  • getExternalFilesDir (Context)
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • JTable (javax.swing)
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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