Class FilterConfigImpl

    • Method Detail

      • getFilterName

        public String getFilterName()
        Description copied from interface: FilterConfig
        Returns the filter-name of this filter as defined in the deployment descriptor.
        Specified by:
        getFilterName in interface FilterConfig
        Returns:
        the filter name of this filter
      • getInitParameter

        public String getInitParameter​(String name)
        Description copied from interface: FilterConfig
        Returns a String containing the value of the named initialization parameter, or null if the initialization parameter does not exist.
        Specified by:
        getInitParameter in interface FilterConfig
        Parameters:
        name - a String specifying the name of the initialization parameter
        Returns:
        a String containing the value of the initialization parameter, or null if the initialization parameter does not exist
      • getInitParameterNames

        public Enumeration<String> getInitParameterNames()
        Description copied from interface: FilterConfig
        Returns the names of the filter's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the filter has no initialization parameters.
        Specified by:
        getInitParameterNames in interface FilterConfig
        Returns:
        an Enumeration of String objects containing the names of the filter's initialization parameters