Package | Description |
---|---|
org.apache.catalina | |
org.apache.catalina.authenticator |
This package contains
Authenticator implementations for the
various supported authentication methods (BASIC, DIGEST, and FORM). |
org.apache.catalina.core | |
org.apache.catalina.realm |
This package contains
Realm implementations for the
various supported realm technologies for authenticating users and
identifying their associated roles. |
Modifier and Type | Method and Description |
---|---|
Realm |
Container.getRealm()
Return the Realm with which this Container is associated.
|
Modifier and Type | Method and Description |
---|---|
void |
Container.setRealm(Realm realm)
Set the Realm with which this Container is associated.
|
Modifier and Type | Method and Description |
---|---|
boolean |
SingleSignOn.reauthenticate(String ssoId,
Realm realm,
Request request)
Attempts reauthentication to the given
Realm using
the credentials associated with the single sign-on session
identified by argument ssoId . |
Modifier and Type | Field and Description |
---|---|
protected Realm |
ContainerBase.realm
The Realm with which this Container is associated.
|
Modifier and Type | Method and Description |
---|---|
Realm |
ContainerBase.getRealm()
Return the Realm with which this Container is associated.
|
Modifier and Type | Method and Description |
---|---|
void |
ContainerBase.setRealm(Realm realm)
Set the Realm with which this Container is associated.
|
Modifier and Type | Class and Description |
---|---|
class |
RealmBase
Simple implementation of Realm that reads an XML file to configure
the valid users, passwords, and roles.
|
Modifier and Type | Field and Description |
---|---|
protected Realm |
GenericPrincipal.realm
The Realm with which this Principal is associated.
|
Modifier and Type | Method and Description |
---|---|
Realm |
GenericPrincipal.getRealm() |
Constructor and Description |
---|
GenericPrincipal(Realm realm,
String name,
String password)
Construct a new Principal, associated with the specified Realm, for the
specified username and password.
|
GenericPrincipal(Realm realm,
String name,
String 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).
|
GenericPrincipal(Realm realm,
String name,
String password,
List<String> roles,
Principal userPrincipal)
Construct a new Principal, associated with the specified Realm, for the
specified username and password, with the specified role names
(as Strings).
|
GenericPrincipal(Realm realm,
String name,
String password,
List<String> roles,
Principal userPrincipal,
LoginContext loginContext)
Construct a new Principal, associated with the specified Realm, for the
specified username and password, with the specified role names
(as Strings).
|
Copyright © 2015 JBoss by Red Hat. All rights reserved.