Class AccessedProperty
- java.lang.Object
-
- es.bsc.dataclay.util.management.classmgr.AccessedProperty
-
public final class AccessedProperty extends Object
This class represents the specification for an accessed Property for Implementations.
-
-
Constructor Summary
Constructors Constructor Description AccessedProperty()
Empty constructor used for deserialization.AccessedProperty(String accessedNamespace, String newclassName, String newname)
AccessedProperty constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
String
getClassName()
Get the AccessedProperty::classNameUUID
getId()
String
getName()
Get the AccessedProperty::nameString
getNamespace()
Get namespacePropertyID
getPropertyID()
Get the AccessedPropertySpec::propertyIDint
hashCode()
void
setClassName(String newclassName)
Set the AccessedProperty::classNamevoid
setId(UUID theid)
void
setName(String newname)
Set the AccessedProperty::namevoid
setNamespace(String newnamespace)
Set namespacevoid
setPropertyID(PropertyID newpropertyID)
Set the AccessedPropertySpec::propertyIDString
toString()
-
-
-
Method Detail
-
getPropertyID
public PropertyID getPropertyID()
Get the AccessedPropertySpec::propertyID- Returns:
- the propertyID
-
setPropertyID
public void setPropertyID(PropertyID newpropertyID)
Set the AccessedPropertySpec::propertyID- Parameters:
newpropertyID
- the propertyID to set
-
getClassName
public String getClassName()
Get the AccessedProperty::className- Returns:
- the className
-
setClassName
public void setClassName(String newclassName)
Set the AccessedProperty::className- Parameters:
newclassName
- the className to set
-
getName
public String getName()
Get the AccessedProperty::name- Returns:
- the name
-
setName
public void setName(String newname)
Set the AccessedProperty::name- Parameters:
newname
- the name to set
-
getNamespace
public String getNamespace()
Get namespace- Returns:
- the namespace
-
setNamespace
public void setNamespace(String newnamespace)
Set namespace- Parameters:
newnamespace
- the namespace to set
-
getId
public UUID getId()
- Returns:
- the id
-
setId
public void setId(UUID theid)
- Parameters:
theid
- the id to set
-
-