Package lumis.portal.webfilereplication
Class WebFileReplicationPropertyValue
- java.lang.Object
-
- lumis.portal.webfilereplication.WebFileReplicationPropertyValue
-
- All Implemented Interfaces:
Serializable
public class WebFileReplicationPropertyValue extends Object implements Serializable
Custom property value of a web file replication.- Since:
- 6.0.0
- Version:
- $Revision: 13093 $ $Date: 2011-05-28 18:40:18 -0300 (Sat, 28 May 2011) $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WebFileReplicationPropertyValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
Returns the identifier of the value.WebFileReplicationProperty
getProperty()
Returns the property associated with the value.WebFileReplication
getReplication()
Returns the web file replication that owns the property.String
getValue()
Returns the value of the property.void
setProperty(WebFileReplicationProperty property)
Defines the property associated with the value.void
setReplication(WebFileReplication replication)
Defines the web file replication that owns the property.void
setValue(String value)
Defines the value of the property.
-
-
-
Method Detail
-
getId
public String getId()
Returns the identifier of the value.- Returns:
- the identifier of the value.
- Since:
- 6.0.0
-
getReplication
public WebFileReplication getReplication()
Returns the web file replication that owns the property.- Returns:
- the web file replication that owns the property.
- Since:
- 6.0.0
-
setReplication
public void setReplication(WebFileReplication replication)
Defines the web file replication that owns the property.- Parameters:
replication
- the web file replication to be defined.- Since:
- 6.0.0
-
getValue
public String getValue()
Returns the value of the property.- Returns:
- the value of the property.
- Since:
- 6.0.0
-
setValue
public void setValue(String value)
Defines the value of the property.- Parameters:
value
- the value to be defined.- Since:
- 6.0.0
-
getProperty
public WebFileReplicationProperty getProperty()
Returns the property associated with the value.- Returns:
- the property associated with the value.
- Since:
- 6.0.0
-
setProperty
public void setProperty(WebFileReplicationProperty property)
Defines the property associated with the value.- Parameters:
property
- the property to be defined.- Since:
- 6.0.0
-
-