Package lumis.portal.webfilereplication
Class WebFileReplication
- java.lang.Object
-
- lumis.portal.webfilereplication.WebFileReplication
-
- All Implemented Interfaces:
Serializable
public class WebFileReplication extends Object implements Serializable
Configuration of a replication of web files.- Since:
- 6.0.0
- Version:
- $Revision: 17047 $ $Date: 2015-03-03 11:22:22 -0300 (Tue, 03 Mar 2015) $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WebFileReplication()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFilterChannelId()
Returns the filter channel id.String
getFilterPath()
Returns the path filter.String
getId()
Returns the identifier of the replication.String
getName()
Returns the name of the replication.Collection<WebFileReplicationPropertyValue>
getPropertyValues()
Returns the properties values of the replication.WebFileReplicationType
getType()
Returns the type of the replication.IWebsite
getWebsite()
Returns the website of this replication.void
setFilterChannelId(String filterChannelId)
Defines the filter channel id.void
setFilterPath(String filterPath)
Defines the path filter.void
setName(String name)
Defines the name of the replication.void
setPropertyValues(Collection<WebFileReplicationPropertyValue> propertyValues)
Defines the the properties values of the replication.void
setType(WebFileReplicationType type)
Defines the type of the replication.void
setWebsite(Website website)
Sets the website of this replication.
-
-
-
Method Detail
-
getId
public String getId()
Returns the identifier of the replication.- Returns:
- the identifier of the replication.
- Since:
- 6.0.0
-
getName
public String getName()
Returns the name of the replication.- Returns:
- the name of the replication.
- Since:
- 6.0.0
-
setName
public void setName(String name)
Defines the name of the replication.- Parameters:
name
- the name to be defined.- Since:
- 6.0.0
-
getType
public WebFileReplicationType getType()
Returns the type of the replication.- Returns:
- the type of the replication.
- Since:
- 6.0.0
-
setType
public void setType(WebFileReplicationType type)
Defines the type of the replication.- Parameters:
type
- the type to be defined.- Since:
- 6.0.0
-
getFilterChannelId
public String getFilterChannelId()
Returns the filter channel id.- Returns:
- the filter channel id.
-
setFilterChannelId
public void setFilterChannelId(String filterChannelId)
Defines the filter channel id.- Parameters:
filterChannelId
- the filter channel id.
-
getFilterPath
public String getFilterPath()
Returns the path filter.- Returns:
- the string value to the filter path.
-
setFilterPath
public void setFilterPath(String filterPath)
Defines the path filter.- Parameters:
filterPath
- the string value to path filter.
-
getPropertyValues
public Collection<WebFileReplicationPropertyValue> getPropertyValues()
Returns the properties values of the replication.- Returns:
- the properties values of the replication.
- Since:
- 6.0.0
-
setPropertyValues
public void setPropertyValues(Collection<WebFileReplicationPropertyValue> propertyValues)
Defines the the properties values of the replication.- Parameters:
propertyValues
- the properties values to be defined.- Since:
- 6.0.0
-
setWebsite
public void setWebsite(Website website)
Sets the website of this replication.- Parameters:
website
- the website value to set.- Since:
- 6.2.0
-
getWebsite
public IWebsite getWebsite()
Returns the website of this replication.- Returns:
- the website
- Since:
- 6.2.0
-
-