Uses of Interface
org.apache.catalina.Realm
-
Packages that use Realm Package Description com.sun.enterprise.web com.sun.web.security org.apache.catalina org.apache.catalina.core org.apache.catalina.realm This package containsRealmimplementations for the various supported realm technologies for authenticating users and identifying their associated roles.org.apache.catalina.startup -
-
Uses of Realm in com.sun.enterprise.web
Methods in com.sun.enterprise.web with parameters of type Realm Modifier and Type Method Description voidVirtualServer. setRealm(Realm realm)voidWebModule. setRealm(Realm realm) -
Uses of Realm in com.sun.web.security
Classes in com.sun.web.security that implement Realm Modifier and Type Class Description classRealmAdapterThis is the realm adapter used to authenticate users and authorize access to web resources. -
Uses of Realm in org.apache.catalina
Methods in org.apache.catalina that return Realm Modifier and Type Method Description RealmContainer. getRealm()Return the Realm with which this Container is associated.Methods in org.apache.catalina with parameters of type Realm Modifier and Type Method Description voidContainer. setRealm(Realm realm)Set the Realm with which this Container is associated. -
Uses of Realm in org.apache.catalina.core
Fields in org.apache.catalina.core declared as Realm Modifier and Type Field Description protected RealmContainerBase. realmThe Realm with which this Container is associated.Methods in org.apache.catalina.core that return Realm Modifier and Type Method Description RealmContainerBase. getRealm()Return the Realm with which this Container is associated.RealmStandardEngine. getRealm()Provide a default in case no explicit configuration is setMethods in org.apache.catalina.core with parameters of type Realm Modifier and Type Method Description voidContainerBase. setRealm(Realm realm)Set the Realm with which this Container is associated. -
Uses of Realm in org.apache.catalina.realm
Classes in org.apache.catalina.realm that implement Realm Modifier and Type Class Description classJAASRealmImplementation of Realm that authenticates users via the Java Authentication and Authorization Service (JAAS).classRealmBaseSimple implementation of Realm that reads an XML file to configure the valid users, passwords, and roles.Fields in org.apache.catalina.realm declared as Realm Modifier and Type Field Description protected RealmGenericPrincipal. realmThe Realm with which this Principal is associated.Methods in org.apache.catalina.realm that return Realm Modifier and Type Method Description RealmGenericPrincipal. getRealm()Constructors in org.apache.catalina.realm with parameters of type Realm Constructor Description GenericPrincipal(Realm realm, String name, char[] password)Construct a new Principal, associated with the specified Realm, for the specified username and password.GenericPrincipal(Realm realm, String name, char[] password, List<String> roles)Construct a new Principal, associated with the specified Realm, for the specified username and password, with the specified role names (as Strings). -
Uses of Realm in org.apache.catalina.startup
Fields in org.apache.catalina.startup declared as Realm Modifier and Type Field Description protected RealmEmbedded. realmThe default realm to be used by all containers associated with this compoennt.Methods in org.apache.catalina.startup that return Realm Modifier and Type Method Description RealmEmbedded. getRealm()Return the default Realm for our Containers.Methods in org.apache.catalina.startup with parameters of type Realm Modifier and Type Method Description voidEmbedded. setRealm(Realm realm)Set the default Realm for our Containers.Constructors in org.apache.catalina.startup with parameters of type Realm Constructor Description Embedded(Logger logger, Realm realm)Construct a new instance of this class with specified properties.
-