Package com.rometools.rome.feed.rss
Class Cloud
- java.lang.Object
-
- com.rometools.rome.feed.rss.Cloud
-
- All Implemented Interfaces:
Serializable,Cloneable
public class Cloud extends Object implements Cloneable, Serializable
Bean for clouds of RSS feeds.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Cloud()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()Creates a deep 'bean' clone of the object.booleanequals(Object other)Indicates whether some other object is "equal to" this one as defined by the Object equals() method.StringgetDomain()Returns the cloud domain.StringgetPath()Returns the cloud path.intgetPort()Returns the cloud port.StringgetProtocol()Returns the cloud protocol.StringgetRegisterProcedure()Returns the cloud register procedure.inthashCode()Returns a hashcode value for the object.voidsetDomain(String domain)Sets the cloud domain.voidsetPath(String path)Sets the cloud path.voidsetPort(int port)Sets the cloud port.voidsetProtocol(String protocol)Sets the cloud protocol.voidsetRegisterProcedure(String registerProcedure)Sets the cloud register procedure.StringtoString()Returns the String representation for the object.
-
-
-
Method Detail
-
clone
public Object clone() throws CloneNotSupportedException
Creates a deep 'bean' clone of the object.- Overrides:
clonein classObject- Returns:
- a clone of the object.
- Throws:
CloneNotSupportedException- thrown if an element of the object cannot be cloned.
-
equals
public boolean equals(Object other)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
-
hashCode
public int hashCode()
Returns a hashcode value for the object.It follows the contract defined by the Object hashCode() method.
-
toString
public String toString()
Returns the String representation for the object.
-
getDomain
public String getDomain()
Returns the cloud domain.- Returns:
- the cloud domain, null if none.
-
setDomain
public void setDomain(String domain)
Sets the cloud domain.- Parameters:
domain- the cloud domain to set, null if none.
-
getPort
public int getPort()
Returns the cloud port.- Returns:
- the cloud port, null if none.
-
setPort
public void setPort(int port)
Sets the cloud port.- Parameters:
port- the cloud port to set, null if none.
-
getPath
public String getPath()
Returns the cloud path.- Returns:
- the cloud path, null if none.
-
setPath
public void setPath(String path)
Sets the cloud path.- Parameters:
path- the cloud path to set, null if none.
-
getRegisterProcedure
public String getRegisterProcedure()
Returns the cloud register procedure.- Returns:
- the cloud register procedure, null if none.
-
setRegisterProcedure
public void setRegisterProcedure(String registerProcedure)
Sets the cloud register procedure.- Parameters:
registerProcedure- the cloud register procedure to set, null if none.
-
getProtocol
public String getProtocol()
Returns the cloud protocol.- Returns:
- the cloud protocol, null if none.
-
setProtocol
public void setProtocol(String protocol)
Sets the cloud protocol.- Parameters:
protocol- the cloud protocol to set, null if none.
-
-