Class LazyDynaClass
- java.lang.Object
-
- org.apache.commons.beanutils.BasicDynaClass
-
- org.apache.commons.beanutils.LazyDynaClass
-
- All Implemented Interfaces:
java.io.Serializable,DynaClass,MutableDynaClass
public class LazyDynaClass extends BasicDynaClass implements MutableDynaClass
DynaClass which implements the
MutableDynaClassinterface.A
MutableDynaClassis a specialized extension toDynaClassthat allows properties to be added or removed dynamically.This implementation has one slightly unusual default behavior - calling the
getDynaProperty(name)method for a property which doesn't exist returns aDynaPropertyrather thannull. The reason for this is thatBeanUtilscalls this method to check if a property exists before trying to set the value. This would defeat the object of theLazyDynaBeanwhich automatically adds missing properties when any of itsset()methods are called. For this reason theisDynaProperty(name)method has been added to this implementation in order to determine if a property actually exists. If the more normal behavior of returningnullis required, then this can be achieved by calling thesetReturnNull(true).The
add(name, type, readable, writable)method is not implemented and always throws anUnsupportedOperationException. I believe this attributes need to be added to theDynaPropertyclass in order to control read/write facilities.- See Also:
LazyDynaBean, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanrestrictedControls whether changes to this DynaClass's properties are allowed.protected booleanreturnNullControls whether thegetDynaProperty()method returns null if a property doesn't exist - or creates a new one.private static longserialVersionUID-
Fields inherited from class org.apache.commons.beanutils.BasicDynaClass
constructor, constructorTypes, constructorValues, dynaBeanClass, name, properties, propertiesMap
-
-
Constructor Summary
Constructors Constructor Description LazyDynaClass()Construct a new LazyDynaClass with default parameters.LazyDynaClass(java.lang.String name)Construct a new LazyDynaClass with the specified name.LazyDynaClass(java.lang.String name, java.lang.Class<?> dynaBeanClass)Construct a new LazyDynaClass with the specified name and DynaBean class.LazyDynaClass(java.lang.String name, java.lang.Class<?> dynaBeanClass, DynaProperty[] properties)Construct a new LazyDynaClass with the specified name, DynaBean class and properties.LazyDynaClass(java.lang.String name, DynaProperty[] properties)Construct a new LazyDynaClass with the specified name and properties.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(java.lang.String name)Add a new dynamic property with no restrictions on data type, readability, or writeability.voidadd(java.lang.String name, java.lang.Class<?> type)Add a new dynamic property with the specified data type, but with no restrictions on readability or writeability.voidadd(java.lang.String name, java.lang.Class<?> type, boolean readable, boolean writeable)Add a new dynamic property with the specified data type, readability, and writeability.protected voidadd(DynaProperty property)Add a new dynamic property.DynaPropertygetDynaProperty(java.lang.String name)Return a property descriptor for the specified property.booleanisDynaProperty(java.lang.String name)Indicate whether a property actually exists.booleanisRestricted()Is this DynaClass currently restricted.booleanisReturnNull()Should this DynaClass return anullfrom thegetDynaProperty(name)method if the property doesn't exist.voidremove(java.lang.String name)Remove the specified dynamic property, and any associated data type, readability, and writeability, from this dynamic class.voidsetRestricted(boolean restricted)Set whether this DynaClass is currently restricted.voidsetReturnNull(boolean returnNull)Set whether this DynaClass should return anullfrom thegetDynaProperty(name)method if the property doesn't exist.-
Methods inherited from class org.apache.commons.beanutils.BasicDynaClass
getDynaBeanClass, getDynaProperties, getName, newInstance, setDynaBeanClass, setProperties
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.commons.beanutils.DynaClass
getDynaProperties, getName, newInstance
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
restricted
protected boolean restricted
Controls whether changes to this DynaClass's properties are allowed.
-
returnNull
protected boolean returnNull
Controls whether the
getDynaProperty()method returns null if a property doesn't exist - or creates a new one.Default is
false.
-
-
Constructor Detail
-
LazyDynaClass
public LazyDynaClass()
Construct a new LazyDynaClass with default parameters.
-
LazyDynaClass
public LazyDynaClass(java.lang.String name)
Construct a new LazyDynaClass with the specified name.- Parameters:
name- Name of this DynaBean class
-
LazyDynaClass
public LazyDynaClass(java.lang.String name, java.lang.Class<?> dynaBeanClass)Construct a new LazyDynaClass with the specified name and DynaBean class.- Parameters:
name- Name of this DynaBean classdynaBeanClass- The implementation class for new instances
-
LazyDynaClass
public LazyDynaClass(java.lang.String name, java.lang.Class<?> dynaBeanClass, DynaProperty[] properties)Construct a new LazyDynaClass with the specified name, DynaBean class and properties.- Parameters:
name- Name of this DynaBean classdynaBeanClass- The implementation class for new instancesproperties- Property descriptors for the supported properties
-
LazyDynaClass
public LazyDynaClass(java.lang.String name, DynaProperty[] properties)Construct a new LazyDynaClass with the specified name and properties.- Parameters:
name- Name of this DynaBean classproperties- Property descriptors for the supported properties
-
-
Method Detail
-
add
protected void add(DynaProperty property)
Add a new dynamic property.- Parameters:
property- Property the new dynamic property to add.- Throws:
java.lang.IllegalArgumentException- if name is nulljava.lang.IllegalStateException- if this DynaClass is currently restricted, so no new properties can be added
-
add
public void add(java.lang.String name)
Add a new dynamic property with no restrictions on data type, readability, or writeability.- Specified by:
addin interfaceMutableDynaClass- Parameters:
name- Name of the new dynamic property- Throws:
java.lang.IllegalArgumentException- if name is nulljava.lang.IllegalStateException- if this DynaClass is currently restricted, so no new properties can be added
-
add
public void add(java.lang.String name, java.lang.Class<?> type)Add a new dynamic property with the specified data type, but with no restrictions on readability or writeability.- Specified by:
addin interfaceMutableDynaClass- Parameters:
name- Name of the new dynamic propertytype- Data type of the new dynamic property (null for no restrictions)- Throws:
java.lang.IllegalArgumentException- if name is nulljava.lang.IllegalStateException- if this DynaClass is currently restricted, so no new properties can be added
-
add
public void add(java.lang.String name, java.lang.Class<?> type, boolean readable, boolean writeable)Add a new dynamic property with the specified data type, readability, and writeability.
N.B.Support for readable/writeable properties has not been implemented and this method always throws a
UnsupportedOperationException.I'm not sure the intention of the original authors for this method, but it seems to me that readable/writable should be attributes of the
DynaPropertyclass (which they are not) and is the reason this method has not been implemented.- Specified by:
addin interfaceMutableDynaClass- Parameters:
name- Name of the new dynamic propertytype- Data type of the new dynamic property (null for no restrictions)readable- Set totrueif this property value should be readablewriteable- Set totrueif this property value should be writeable- Throws:
java.lang.UnsupportedOperationException- anytime this method is called
-
getDynaProperty
public DynaProperty getDynaProperty(java.lang.String name)
Return a property descriptor for the specified property.
If the property is not found and the
returnNullindicator istrue, this method always returnsnull.If the property is not found and the
returnNullindicator isfalsea new property descriptor is created and returned (although its not actually added to the DynaClass's properties). This is the default beahviour.The reason for not returning a
nullproperty descriptor is thatBeanUtilsuses this method to check if a property exists before trying to set it - since these Lazy implementations automatically add any new properties when they are set, returningnullfrom this method would defeat their purpose.- Specified by:
getDynaPropertyin interfaceDynaClass- Overrides:
getDynaPropertyin classBasicDynaClass- Parameters:
name- Name of the dynamic property for which a descriptor is requested- Returns:
- The dyna property for the specified name
- Throws:
java.lang.IllegalArgumentException- if no property name is specified
-
isDynaProperty
public boolean isDynaProperty(java.lang.String name)
Indicate whether a property actually exists.
N.B. Using
getDynaProperty(name) == nulldoesn't work in this implementation because that method might return a DynaProperty if it doesn't exist (depending on thereturnNullindicator).- Parameters:
name- The name of the property to check- Returns:
trueif there is a property of the specified name, otherwisefalse- Throws:
java.lang.IllegalArgumentException- if no property name is specified
-
isRestricted
public boolean isRestricted()
Is this DynaClass currently restricted.
If restricted, no changes to the existing registration of property names, data types, readability, or writeability are allowed.
- Specified by:
isRestrictedin interfaceMutableDynaClass- Returns:
trueif thisMutableDynaClasscannot be changed otherwisefalse
-
isReturnNull
public boolean isReturnNull()
Should this DynaClass return anullfrom thegetDynaProperty(name)method if the property doesn't exist.- Returns:
trueif anullDynaPropertyshould be returned if the property doesn't exist, otherwisefalseif a newDynaPropertyshould be created.
-
remove
public void remove(java.lang.String name)
Remove the specified dynamic property, and any associated data type, readability, and writeability, from this dynamic class. NOTE - This does NOT cause any corresponding property values to be removed from DynaBean instances associated with this DynaClass.- Specified by:
removein interfaceMutableDynaClass- Parameters:
name- Name of the dynamic property to remove- Throws:
java.lang.IllegalArgumentException- if name is nulljava.lang.IllegalStateException- if this DynaClass is currently restricted, so no properties can be removed
-
setRestricted
public void setRestricted(boolean restricted)
Set whether this DynaClass is currently restricted.
If restricted, no changes to the existing registration of property names, data types, readability, or writeability are allowed.
- Specified by:
setRestrictedin interfaceMutableDynaClass- Parameters:
restricted-trueif thisMutableDynaClasscannot be changed otherwisefalse
-
setReturnNull
public void setReturnNull(boolean returnNull)
Set whether this DynaClass should return anullfrom thegetDynaProperty(name)method if the property doesn't exist.- Parameters:
returnNull-trueif anullDynaPropertyshould be returned if the property doesn't exist, otherwisefalseif a newDynaPropertyshould be created.
-
-