Package org.apache.catalina.deploy
Class MessageDestinationRef
- java.lang.Object
-
- org.apache.catalina.deploy.MessageDestinationRef
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MessageDestinationRefDecorator
public class MessageDestinationRef extends Object implements Serializable
Representation of a message destination reference for a web application, as represented in a
<message-destination-ref>element in the deployment descriptor.- Since:
- Tomcat 5.0
- Version:
- $Revision: 1.2 $ $Date: 2005/12/08 01:27:41 $
- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected NamingResourcesresourcesThe NamingResources with which we are associated (if any).
-
Constructor Summary
Constructors Constructor Description MessageDestinationRef()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()StringgetLink()StringgetName()NamingResourcesgetNamingResources()StringgetType()StringgetUsage()voidsetDescription(String description)voidsetLink(String link)voidsetName(String name)voidsetType(String type)voidsetUsage(String usage)StringtoString()Return a String representation of this object.
-
-
-
Field Detail
-
resources
protected NamingResources resources
The NamingResources with which we are associated (if any).
-
-
Method Detail
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getLink
public String getLink()
-
setLink
public void setLink(String link)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getUsage
public String getUsage()
-
setUsage
public void setUsage(String usage)
-
toString
public String toString()
Return a String representation of this object.
-
getNamingResources
public NamingResources getNamingResources()
-
-