| |
|
| java.lang.Object org.apache.roller.pojos.PersistentObject org.apache.roller.pojos.PingCategoryRestrictionData
PingCategoryRestrictionData | public class PingCategoryRestrictionData extends PersistentObject implements Serializable(Code) | | Ping Category Restriction. An instance of this class relates an auto ping configuration
AutoPingData to a
specific weblog category
WeblogCategoryData . When one or more instances of this class are present for a
given auto ping configuration, it means that pings should only go out for changes to the categories specified by those
instances. If no instances of this class are present for a given auto ping configuration, it means that the ping
configuration is not restricted by category, so pings should go out for changes in any category.
author: Anil Gangolli |
serialVersionUID | final static long serialVersionUID(Code) | | |
PingCategoryRestrictionData | public PingCategoryRestrictionData()(Code) | | Default constructor. Leaves all fields null. Required for bean compliance.
|
PingCategoryRestrictionData | public PingCategoryRestrictionData(String id, AutoPingData autoPing, WeblogCategoryData weblogCategory)(Code) | | Constructor
Parameters: id - unique id of this object Parameters: autoPing - auto ping configuration being restricted Parameters: weblogCategory - weblog category to which this auto ping configuration is restricted |
getAutoping | public AutoPingData getAutoping()(Code) | | Get the auto ping configuration to which this category restriction applies.
the auto ping configuration to which this category restriction applies. |
getId | public String getId()(Code) | | Get the unique id (primary key) of this object.
the unique id of this object. -- struts.validator type="required" msgkey="errors.required" |
getWeblogCategory | public WeblogCategoryData getWeblogCategory()(Code) | | Get the weblog category. Get the weblog category to which pings should be restricted.
the weblog category to which pings should be restricted. |
setAutoping | public void setAutoping(AutoPingData autoPing)(Code) | | Set the auto ping configuration to which this category restriction applies.
Parameters: autoPing - the auto ping configuration to which this category restriction applies. |
setId | public void setId(String id)(Code) | | Set the unique id (primary key) of this object
Parameters: id - |
setWeblogCategory | public void setWeblogCategory(WeblogCategoryData weblogCategory)(Code) | | Set the ping target. Set the target to be pinged when the corresponding website changes.
Parameters: weblogCategory - the weblog category to which pings should be restricted. |
|
|
|