Uses of Interface
org.apache.catalina.Valve
-
Packages that use Valve Package Description com.sun.enterprise.security.web com.sun.enterprise.web com.sun.web.security.realmadapter org.apache.catalina org.apache.catalina.authenticator This package containsAuthenticatorimplementations for the various supported authentication methods (BASIC, DIGEST, and FORM).org.apache.catalina.core org.apache.catalina.valves This package contains a variety of small Valve implementations that do not warrant being packaged separately.org.glassfish.web.ha.authenticator org.glassfish.web.ha.session.management org.glassfish.web.valve -
-
Uses of Valve in com.sun.enterprise.security.web
Classes in com.sun.enterprise.security.web that implement Valve Modifier and Type Class Description classGlassFishSingleSignOnA Valve that supports a "single sign on" user experience, where the security identity of a user who successfully authenticates to one web application is propogated to other web applications in the same security domain. -
Uses of Valve in com.sun.enterprise.web
Classes in com.sun.enterprise.web that implement Valve Modifier and Type Class Description classPEAccessLogValveImplementation of the Valve interface that generates a web server access log with the detailed line contents matching a configurable pattern.Methods in com.sun.enterprise.web with parameters of type Valve Modifier and Type Method Description voidVirtualServer. addValve(Valve valve)Adds the given Tomcat-style valve to the currently active pipeline, keeping the pipeline that is not currently active in sync. -
Uses of Valve in com.sun.web.security.realmadapter
Classes in com.sun.web.security.realmadapter that implement Valve Modifier and Type Class Description classAuthenticatorProxy -
Uses of Valve in org.apache.catalina
Methods in org.apache.catalina that return Valve Modifier and Type Method Description ValveValve. getNext()Return the next Valve in the pipeline containing this Valve, if any.Methods in org.apache.catalina with parameters of type Valve Modifier and Type Method Description voidPipeline. addValve(Valve valve)Add Tomcat-style valve.voidValve. setNext(Valve valve)Set the next Valve in the pipeline containing this Valve. -
Uses of Valve in org.apache.catalina.authenticator
Classes in org.apache.catalina.authenticator that implement Valve Modifier and Type Class Description classAuthenticatorBaseBasic implementation of the Valve interface that enforces the<security-constraint>elements in the web application deployment descriptor.classBasicAuthenticatorAn Authenticator and Valve implementation of HTTP BASIC Authentication, as outlined in RFC 2617: "HTTP Authentication: Basic and Digest Access Authentication."classDigestAuthenticatorAn Authenticator and Valve implementation of HTTP DIGEST Authentication (see RFC 2069).classFormAuthenticatorAn Authenticator and Valve implementation of FORM BASED Authentication, as described in the Servlet API Specification, Version 2.2.classNonLoginAuthenticatorAn Authenticator and Valve implementation that checks only security constraints not involving user authentication.classSingleSignOnA Valve that supports a "single sign on" user experience, where the security identity of a user who successfully authenticates to one web application is propagated to other web applications in the same security domain.classSSLAuthenticatorAn Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users. -
Uses of Valve in org.apache.catalina.core
Methods in org.apache.catalina.core with parameters of type Valve Modifier and Type Method Description voidContainerBase. addValve(Valve valve)Add Tomcat-style valve.voidStandardPipeline. addValve(Valve valve)Add Tomcat-style valve. -
Uses of Valve in org.apache.catalina.valves
Classes in org.apache.catalina.valves that implement Valve Modifier and Type Class Description classAccessLogValveImplementation of the Valve interface that generates a web server access log with the detailed line contents matching a configurable pattern.classErrorReportValveImplementation of a Valve that outputs HTML error pages.classExtendedAccessLogValveAn implementation of the W3c Extended Log File Format.classJDBCAccessLogValveThis Tomcat extension logs server access directly to a database, and can be used instead of the regular file-based access log implemented in AccessLogValve.classPersistentValveValve that implements the default basic behavior for theStandardHostcontainer implementation.classRemoteAddrValveConcrete implementation ofRequestFilterValvethat filters based on the string representation of the remote client's IP address.classRemoteHostValveConcrete implementation ofRequestFilterValvethat filters based on the remote client's host name.classRequestDumperValveImplementation of a Valve that logs interesting contents from the specified Request (before processing) and the corresponding Response (after processing).classRequestFilterValveImplementation of a Valve that performs filtering based on comparing the appropriate request property (selected based on which subclass you choose to configure into your Container's pipeline) against a set of regular expressions configured for this Valve.classValveBaseConvenience base class for implementations of the Valve interface.classWebdavFixValveValve that attempts to force MS WebDAV clients connecting on port 80 to use a WebDAV client that actually works.Fields in org.apache.catalina.valves declared as Valve Modifier and Type Field Description protected ValveValveBase. nextThe next Valve in the pipeline this Valve is a component of.Methods in org.apache.catalina.valves that return Valve Modifier and Type Method Description ValveValveBase. getNext()Return the next Valve in this pipeline, ornullif this is the last Valve in the pipeline.Methods in org.apache.catalina.valves with parameters of type Valve Modifier and Type Method Description voidValveBase. setNext(Valve valve)Set the Valve that follows this one in the pipeline it is part of. -
Uses of Valve in org.glassfish.web.ha.authenticator
Classes in org.glassfish.web.ha.authenticator that implement Valve Modifier and Type Class Description classHASingleSignOn -
Uses of Valve in org.glassfish.web.ha.session.management
Classes in org.glassfish.web.ha.session.management that implement Valve Modifier and Type Class Description classHASessionStoreValve -
Uses of Valve in org.glassfish.web.valve
Classes in org.glassfish.web.valve that implement Valve Modifier and Type Class Description classTomcatValveAdapterTomcat-style wrapper valve around GlassFish-style valve.Methods in org.glassfish.web.valve that return Valve Modifier and Type Method Description ValveTomcatValveAdapter. getNext()Methods in org.glassfish.web.valve with parameters of type Valve Modifier and Type Method Description voidTomcatValveAdapter. setNext(Valve valve)Constructors in org.glassfish.web.valve with parameters of type Valve Constructor Description GlassFishValveAdapter(Valve gfValve)Constructor.
-