Example usage for javax.servlet Filter toString

List of usage examples for javax.servlet Filter toString

Introduction

In this page you can find the example usage for javax.servlet Filter toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:org.mentawai.util.DebugServletFilter.java

public static void debug(StringBuffer sb, org.mentawai.core.Filter f) {

    if (sb == null)
        return;//from   ww  w .jav a  2 s  .co m

    sb.append("- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \n\n");
    sb.append("\n" + htmlBlueFont + "Filter = ").append(f.toString()).append(htmlCloseFont + "\n\n\n");
}