Class 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 Detail

      • TagLibConfigurationDescriptor

        public TagLibConfigurationDescriptor()
        Default constructor.
      • TagLibConfigurationDescriptor

        public TagLibConfigurationDescriptor​(String uri,
                                             String location)
        Construct a tag library configuration with the given location and URI.
        Parameters:
        the - URI.
        the - location.
    • 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:
        getTaglibURI in interface jakarta.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:
        getTaglibLocation in interface jakarta.servlet.descriptor.TaglibDescriptor
      • print

        public void print​(StringBuilder toStringBuilder)
        Return a formatted String representing my state.