Class PropertyType
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.model.module.PropertyType
-
- All Implemented Interfaces:
IModuleObject
public class PropertyType extends Object implements IModuleObject
Generic property abstraction.
Sample:
{
"name": "guid",
"value": "abc_123"
}
-
-
Constructor Summary
Constructors Constructor Description PropertyType()PropertyType(String name, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Get name of the property.StringgetValue()Get property value.voidsetName(String name)Set name of the property.voidsetValue(String value)Set property 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.
-
-