Class ClassName
java.lang.Object
org.apache.geode.management.configuration.ClassName
- All Implemented Interfaces:
Serializable
Used to configure an attribute that represents an instance of a java class.
If the class implements the org.apache.geode.cache.Declarable interface from the
geode-core module then properties can also be configured that will be
used to initialize the instance.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionObject to be instantiated using the empty param constructor of the classNamethis is a convenient way to create a ClassName object using json represented propertiesClassName(String className, Properties properties) -
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()static booleanisClassNameValid(String className) this provides a convenient method to validate if the given name is a valid classname
-
Field Details
-
EMPTY
Can be used when updating an attribute to configure it with no class name.
-
-
Constructor Details
-
ClassName
Object to be instantiated using the empty param constructor of the className- Parameters:
className- this class needs a no-arg constructor.
-
ClassName
this is a convenient way to create a ClassName object using json represented properties- Parameters:
className- this class needs to have a no-arg constructorjsonInitProperties- a json representation of the initialization properties that will be passed toorg.apache.geode.cache.Declarable#initializein the geode-core module. If the className is not Declarable, then these properties will be ignored- Throws:
IllegalArgumentException- if the class name is not validIllegalArgumentException- if jsonInitProperties is invalid JSON
-
ClassName
- Parameters:
className- the name of the class to be instantiated. This class needs to have a no-arg constructor.properties- the initialization properties that will be passed toorg.apache.geode.cache.Declarable#initializein the geode-core module. If the className is not Declarable, then these properties will be ignored- Throws:
IllegalArgumentException- if classname contains illegal classname characters
-
-
Method Details
-
getClassName
- Returns:
- the name of the class
-
getInitProperties
- Returns:
- the properties that will be used when an instance is created.
-
hashCode
public int hashCode() -
equals
-
isClassNameValid
this provides a convenient method to validate if the given name is a valid classname- Parameters:
className- the class name to be validated- Returns:
- false if classname is blank or has invalid classname characters
-