Class TagLibConfigurationDescriptor
- java.lang.Object
-
- org.glassfish.web.deployment.descriptor.TagLibConfigurationDescriptor
-
- All Implemented Interfaces:
jakarta.servlet.descriptor.TaglibDescriptor,Serializable
public class TagLibConfigurationDescriptor extends Object implements Serializable, jakarta.servlet.descriptor.TaglibDescriptor
This descriptor represent the information about a tag library used in a web application.- Author:
- Danny Coward
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TagLibConfigurationDescriptor()Default constructor.TagLibConfigurationDescriptor(String uri, String location)Construct a tag library configuration with the given location and URI.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTaglibLocation()StringgetTagLibLocation()Describes the location of the tag library file.StringgetTaglibURI()StringgetTagLibURI()Return the URI of this tag lib.voidprint(StringBuilder toStringBuilder)Return a formatted String representing my state.voidsetTagLibLocation(String location)Describe the location of the tag library file.voidsetTagLibURI(String uri)Sets the URI of this tag lib.
-
-
-
Method Detail
-
setTagLibURI
public void setTagLibURI(String uri)
Sets the URI of this tag lib.- Parameters:
the- URI of the tag library.
-
getTagLibURI
public String getTagLibURI()
Return the URI of this tag lib.- Returns:
- the URI of the tag library.
-
getTaglibURI
public String getTaglibURI()
- Specified by:
getTaglibURIin interfacejakarta.servlet.descriptor.TaglibDescriptor
-
setTagLibLocation
public void setTagLibLocation(String location)
Describe the location of the tag library file.- Parameters:
the- location of the tag library.
-
getTagLibLocation
public String getTagLibLocation()
Describes the location of the tag library file.- Returns:
- the location of the tag library.
-
getTaglibLocation
public String getTaglibLocation()
- Specified by:
getTaglibLocationin interfacejakarta.servlet.descriptor.TaglibDescriptor
-
print
public void print(StringBuilder toStringBuilder)
Return a formatted String representing my state.
-
-