Class PropertyType

  • All Implemented Interfaces:
    IModuleObject

    public class PropertyType
    extends Object
    implements IModuleObject
    Generic property abstraction.
    Sample:
    {
      "name": "guid",
      "value": "abc_123"
    }
    • Constructor Detail

      • PropertyType

        public PropertyType()
      • PropertyType

        public PropertyType​(String name,
                            String value)
    • Method Detail

      • getName

        public String getName()
        Get name of the property.
        Returns:
        name of the property.
      • setName

        public void setName​(String name)
        Set name of the property.
        Parameters:
        name - of the property.
      • getValue

        public String getValue()
        Get property value.
        Returns:
        value of the property.
      • setValue

        public void setValue​(String value)
        Set property value.
        Parameters:
        value - of the property.