Class DeclarableType

java.lang.Object
org.apache.geode.cache.configuration.ClassNameType
org.apache.geode.cache.configuration.DeclarableType
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
RegionAttributesType.EvictionAttributes.LruHeapPercentage

@Experimental public class DeclarableType extends ClassNameType implements Serializable
A "declarable" element specifies a Declarable object to be placed in a Region entry.

Java class for declarable-type complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="declarable-type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="class-name" type="{http://geode.apache.org/schema/cache}class-name-type"/>
         <element name="parameter" type="{http://geode.apache.org/schema/cache}parameter-type" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

  • Constructor Details

    • DeclarableType

      public DeclarableType()
    • DeclarableType

      public DeclarableType(String className)
    • DeclarableType

      public DeclarableType(String className, String jsonProperties)
    • DeclarableType

      public DeclarableType(String className, Properties properties)
  • Method Details

    • getParameters

      public List<ParameterType> getParameters()
      Gets the value of the parameter property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the parameter property.

      For example, to add a new item, do as follows:

       getParameters().add(newItem);
       

      Objects of the following type(s) are allowed in the list ParameterType

      Returns:
      List of ParameterTypes.
    • setParameters

      public void setParameters(Properties properties)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class ClassNameType
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class ClassNameType
    • toString

      public String toString()
      Overrides:
      toString in class ClassNameType