Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change 
notification.
The following page has been changed by xxd82329:
http://wiki.apache.org/tomcat/FilterLevels

New page:
        // -------------------- Level for filters ----------
        public static enum FilterLevels {
                ENGINE("engine"), HOST("host"), CONTEXT("context"), 
WRAPPER("wrapper");
                private final String readableName;

                private FilterLevels(String readableName) {
                        this.readableName = readableName;
                }

                /*
                 * (non-Javadoc)
                 * 
                 * @see java.lang.Enum#toString()
                 */
                @Override
                public String toString() {
                        return this.readableName;
                }
        }

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to