|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object lumis.portal.propertybag.PropertyBag
@StableMinor(version="5.5", sinceVersion="5.0") public class PropertyBag
Object that represents a property bag.
This is a property bag that contains name value pairs where name
is a string that is unique within a property bag and the value is
a Property
object.
A property bag may have a parent property bag from which it may inherit properties. Properties inherited from a parent property bag may be overridden in the child property bag.
Constructor Summary | |
---|---|
PropertyBag()
|
Method Summary | |
---|---|
String |
getId()
Returns the identifier of this property bag. |
Property |
getLocalProperty(String propertyName)
Returns a property in this property bag. |
Map<String,Property> |
getLocalPropertyMap()
Returns all the properties in this property bag. |
PropertyBag |
getParentPropertyBag()
Returns the parent property bag object. |
Property |
getProperty(String propertyName)
Returns a property of this property bag. |
Map<String,Property> |
getPropertyMap()
Returns the aggregated properties of this property bag. |
String |
getValue(String propertyName,
String defaultValue)
Returns the value of a property in this bag, applying all property value evaluation rules. |
Map<String,List<String>> |
getValueMap()
Returns a Map containing all property values of this bag, applying all property value evaluation rules. |
List<String> |
getValues(String propertyName,
List<String> defaultValues)
Returns the values of a property in this bag, applying all property values evaluation rules. |
void |
removeProperty(String propertyName)
Removes a property from this property bag. |
void |
resetDefaultValues(String propertyName)
Resets a property default values, so that it will be inherited from the parent property bag. |
void |
setDefaultValue(String propertyName,
String value)
Sets the default value for a property. |
void |
setDefaultValues(String propertyName,
List<String> values)
Sets the default values for a property. |
void |
setParentPropertyBag(PropertyBag parentPropertyBag)
Sets the parent property bag. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PropertyBag()
Method Detail |
---|
public String getId()
public PropertyBag getParentPropertyBag()
public void setParentPropertyBag(PropertyBag parentPropertyBag)
parentPropertyBag
- the parent property bag.public Map<String,Property> getLocalPropertyMap()
This method does not take into consideration the properties that may be inherited from the parent property bag.
getValueMap()
,
getPropertyMap()
public Property getLocalProperty(String propertyName) throws PortalException
Inherited properties are not returned.
propertyName
- name of the property to return.
IllegalArgumentException
- if propertyName
is
null
.
PortalObjectNotFoundException
- if no property with the given name
was found.
PortalException
public Property getProperty(String propertyName) throws PortalException
The property may be an inherited property, from other property bag.
propertyName
- name of the property to return.
IllegalArgumentException
- if propertyName
is
null
.
PortalObjectNotFoundException
- if no property with the given name
was found.
PortalException
getValue(String, String)
,
getValues(String, List)
public Map<String,Property> getPropertyMap()
If this property bag has a parent property bag, the properties of the parent are first called and subsequently the local properties are merged with the inherited ones. If there are properties with the same name, the local property is preserved discarding the inherited property.
getValueMap()
,
getLocalPropertyMap()
public void removeProperty(String propertyName) throws PortalException
propertyName
- name of the property to remove.
IllegalArgumentException
- if propertyName
is
null
.
PortalObjectNotFoundException
- if no property with the given name
was found.
PortalException
public Map<String,List<String>> getValueMap()
The key of the map is the property name and the value of the map is the list of values for each property. If no property exist in this bag, this method returns an empty Map.
public String getValue(String propertyName, String defaultValue)
propertyName
- the property name.defaultValue
- the value to return if there is no value for the
property.
IllegalArgumentException
- if propertyName
is
null
.public List<String> getValues(String propertyName, List<String> defaultValues)
propertyName
- the property name.defaultValues
- the values to return if there is no value for the
property.
IllegalArgumentException
- if propertyName
is
null
.public void setDefaultValue(String propertyName, String value)
propertyName
- the property name.value
- the value. If null
, the default value will be
inherited. To set as no value and override inheritance, use
setDefaultValues(String, List)
.
IllegalArgumentException
- if propertyName
or
value
is null
.public void setDefaultValues(String propertyName, List<String> values)
propertyName
- the property name.values
- the values. If it is an empty list, the property will
explicitly have no value (and will not inherit its parent's values).
IllegalArgumentException
- if propertyName
or
values
is null
.public void resetDefaultValues(String propertyName)
propertyName
- the property name.
IllegalArgumentException
- if propertyName
is null
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |