Class SessionProperty
- java.lang.Object
-
- es.bsc.dataclay.util.management.sessionmgr.SessionProperty
-
- All Implemented Interfaces:
Serializable
public final class SessionProperty extends Object implements Serializable
This class represents a property in a Session.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SessionProperty()Empty constructor for specification of requirements while validating sessionsSessionProperty(PropertyID newpropertyID)SessionProperty constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UUIDgetId()get idPropertyIDgetPropertyID()Get the SessionProperty::propertyIDvoidsetId(UUID newid)Set idvoidsetPropertyID(PropertyID newpropertyID)Set the SessionProperty::propertyID
-
-
-
Constructor Detail
-
SessionProperty
public SessionProperty()
Empty constructor for specification of requirements while validating sessions
-
SessionProperty
public SessionProperty(PropertyID newpropertyID)
SessionProperty constructor- Parameters:
newpropertyID- ID of the Property
-
-
Method Detail
-
getPropertyID
public PropertyID getPropertyID()
Get the SessionProperty::propertyID- Returns:
- the propertyID
-
setPropertyID
public void setPropertyID(PropertyID newpropertyID)
Set the SessionProperty::propertyID- Parameters:
newpropertyID- the propertyID to set
-
getId
public UUID getId()
get id- Returns:
- id
-
setId
public void setId(UUID newid)
Set id- Parameters:
newid- the id
-
-