Class XmlCleaningResponseFilter

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.apache.wicket.util.string.AppendingStringBuffer filter​(org.apache.wicket.util.string.AppendingStringBuffer responseBuffer)
      Filters the response buffer and returns the filtered response that can be used in the next filter or returned to the real output itself.
      protected boolean isValidXmlChar​(int codePoint)
      Checks whether the character represented by this codePoint is a valid in XML documents.
      protected boolean shouldFilter​(org.apache.wicket.util.string.AppendingStringBuffer responseBuffer)
      Decides whether the filter should be applied.
      org.apache.wicket.util.string.AppendingStringBuffer stripNonValidXMLCharacters​(org.apache.wicket.util.string.AppendingStringBuffer input)
      This method ensures that the output String has only valid XML unicode characters as specified by the XML 1.0 standard.
    • Method Detail

      • filter

        public org.apache.wicket.util.string.AppendingStringBuffer filter​(org.apache.wicket.util.string.AppendingStringBuffer responseBuffer)
        Description copied from interface: IResponseFilter
        Filters the response buffer and returns the filtered response that can be used in the next filter or returned to the real output itself. A filter may alter the response buffer and return the response buffer itself.
        Specified by:
        filter in interface IResponseFilter
        Parameters:
        responseBuffer - The response buffer to be filtered
        Returns:
        The changed buffer or the response buffer itself (changed or not)
      • shouldFilter

        protected boolean shouldFilter​(org.apache.wicket.util.string.AppendingStringBuffer responseBuffer)
        Decides whether the filter should be applied.
        Parameters:
        responseBuffer - The buffer to filter
        Returns:
        true if the buffer brings Ajax response
      • stripNonValidXMLCharacters

        public org.apache.wicket.util.string.AppendingStringBuffer stripNonValidXMLCharacters​(org.apache.wicket.util.string.AppendingStringBuffer input)
        This method ensures that the output String has only valid XML unicode characters as specified by the XML 1.0 standard. For reference, please see the standard. This method will return an empty String if the input is null or empty.
        Parameters:
        input - The StringBuffer whose non-valid characters we want to remove.
        Returns:
        The in String, stripped of non-valid characters.
      • isValidXmlChar

        protected boolean isValidXmlChar​(int codePoint)
        Checks whether the character represented by this codePoint is a valid in XML documents.
        Parameters:
        codePoint - The codePoint for the checked character
        Returns:
        true if the character can be used in XML documents