Uses of Class
org.rhq.core.domain.configuration.Property

Packages that use Property
org.rhq.core.domain.configuration   
 

Uses of Property in org.rhq.core.domain.configuration
 

Subclasses of Property in org.rhq.core.domain.configuration
 class ObfuscatedPropertySimple
          This is a specialization of PropertySimple that provides password obfuscation methods.
 class PropertyList
          Holds an indexed list of child properties.
 class PropertyMap
          Holds a map of child properties.
 class PropertySimple
          This type of Property stores a simple Java primitive value in string form.
 

Methods in org.rhq.core.domain.configuration that return Property
 Property Property.deepCopy(boolean keepId)
           
 Property AbstractPropertyMap.get(String name)
           
 Property Configuration.get(String name)
          Retrieves the given property from this Configuration object.
 Property PropertyMap.get(String name)
          Looks for a property with the given name in the map and returns it.
 Property Configuration.remove(String name)
          Removes the given property from this Configuration object.
 

Methods in org.rhq.core.domain.configuration that return types with arguments of type Property
 Map<String,Property> Configuration.getAllProperties()
          Getter for the properties reference.
 List<Property> PropertyList.getList()
          Returns the children of this list.
 Map<String,Property> AbstractPropertyMap.getMap()
           
 Map<String,Property> Configuration.getMap()
          Returns the contents of this Configuration as a map.
 Map<String,Property> PropertyMap.getMap()
          Returns the contents of this PropertyMap as a map.
 Collection<Property> Configuration.getProperties()
          Returns all the direct children of this Configuration.
 

Methods in org.rhq.core.domain.configuration with parameters of type Property
 void PropertyList.add(Property property)
          Adds a child property to the end of this list.
 int Property.compareTo(Property other)
           
 void AbstractPropertyMap.put(Property property)
           
 void Configuration.put(Property value)
          Adds the given property to this Configuration object.
 void PropertyMap.put(Property property)
          Put a child property into this map keyed on the given property's name.
 

Method parameters in org.rhq.core.domain.configuration with type arguments of type Property
 void PropertyList.setList(List<Property> list)
          Sets the list of child properties directly to the given list reference.
 void PropertyMap.setMap(Map<String,Property> map)
          Sets the map of child properties directly to the given map reference.
 void Configuration.setProperties(Collection<Property> properties)
           
 

Constructors in org.rhq.core.domain.configuration with parameters of type Property
Property(Property original, boolean keepId)
           
PropertyList(String name, Property... startingList)
          Creates a new PropertyList object that is associated with the given name and has the given properties as its initial list of child properties.
PropertyMap(String name, Property... startingProperties)
          Creates a new PropertyMap object that is associated with the given name and has the given properties as its initial set of child properties.
 



Copyright © 2008-2012 Red Hat, Inc.. All Rights Reserved.