Interface | Description |
---|---|
RevocationRegistry |
A
RevocationRegistry is used to store the ids of revoked (canceled) security tokens. |
SecurityTokenRegistry |
A registry of Security Tokens that may be issued by instances of
SecurityTokenProvider |
Class | Description |
---|---|
AbstractJDBCRegistry | |
AbstractJPARegistry | |
DefaultRevocationRegistry |
A simple
RevocationRegistry that keeps the revoked token ids in a memory-only cache. |
DefaultTokenRegistry |
Hashmap based token registry
|
FileBasedRevocationRegistry |
FileBasedRevocationRegistry is a revocation registry implementation that uses a file to store the ids of the
revoked
(canceled) security tokens. |
FileBasedSTSOperations |
A base class for file based STS operations
|
FileBasedTokenRegistry |
A File based implementation of the
SecurityTokenRegistry |
FileBasedTokenRegistry.TokenHolder | |
JDBCRevocationRegistry |
Implementation of
SecurityTokenRegistry using JDBC |
JDBCTokenRegistry |
Implementation of
SecurityTokenRegistry using JDBC |
JPABasedRevocationRegistry |
JPABasedRevocationRegistry is a revocation registry implementation that uses JPA to store the ids of the
revoked
(canceled) security tokens on a database. |
JPABasedTokenRegistry |
SecurityTokenRegistry implementation that uses JPA to store tokens. |
OJDBCRevocationRegistry |
Implementation of
SecurityTokenRegistry using JDBC
This is a working implementation implementation based on the plink JDBCRevocationRegistry which allows better jndi configuration
(eg global datasources under JBAS 7+ -- https://docs.jboss.org/author/display/AS71/JNDI+Reference) and serialization to blob
fields for Oracle (and other DBs) Initial implementation used a varchar for the serialized class. |
OJDBCTokenRegistry |
Implementation of
SecurityTokenRegistry using JDBC
This is a working implementation implementation based on the plink JDBCTokenRegistry which allows better jndi configuration (eg
global datasources under JBAS 7+ -- https://docs.jboss.org/author/display/AS71/JNDI+Reference) and serialization to blob fields
for Oracle (and other DBs) Initial implementation used a varchar for the serialized class. |
RevokedToken |
RevokedToken is a simple JPA entity used by the JPABasedRevocationRegistry to persist the ids of the
revoked
security tokens. |
SecurityToken |
SecurityToken is a simple JPA entity used by the JPABasedTokenRegistry to persist tokens. |
Copyright © 2017. All rights reserved.