Interface IResponseFilter

    • Method Summary

      All Methods Instance Methods Abstract 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.
    • Method Detail

      • filter

        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. A filter may alter the response buffer and return the response buffer itself.
        Parameters:
        responseBuffer - The response buffer to be filtered
        Returns:
        The changed buffer or the response buffer itself (changed or not)