| Modifier and Type | Method and Description |
|---|---|
<T extends CredentialStorage> |
IdentityManager.retrieveCredentials(Account account,
Class<T> storageClass)
Returns a list of all stored credential values for the specified account and credential storage class
|
<T extends CredentialStorage> |
IdentityManager.retrieveCurrentCredential(Account account,
Class<T> storageClass)
Returns the current stored credential value for the specific account and credential storage class
|
void |
IdentityManager.updateCredential(Account account,
Object credential)
Updates a credential for the given
Account. |
void |
IdentityManager.updateCredential(Account account,
Object credential,
Date effectiveDate,
Date expiryDate)
Updates a credential for the given
Account. |
| Modifier and Type | Method and Description |
|---|---|
Account |
Credentials.getValidatedAccount()
Returns the
Account instance used to validate the credential. |
Account |
AbstractBaseCredentials.getValidatedAccount() |
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractBaseCredentials.setValidatedAccount(Account account) |
| Modifier and Type | Method and Description |
|---|---|
protected <A extends Account> |
AbstractCredentialHandler.getAccount(IdentityContext context,
String loginName) |
| Modifier and Type | Method and Description |
|---|---|
void |
DigestCredentialHandler.update(IdentityContext context,
Account account,
Digest digest,
CredentialStore<?> store,
Date effectiveDate,
Date expiryDate) |
void |
TOTPCredentialHandler.update(IdentityContext context,
Account account,
TOTPCredential credential,
CredentialStore<?> store,
Date effectiveDate,
Date expiryDate) |
void |
CredentialHandler.update(IdentityContext context,
Account account,
U credential,
S store,
Date effectiveDate,
Date expiryDate) |
void |
PasswordCredentialHandler.update(IdentityContext context,
Account account,
U password,
S store,
Date effectiveDate,
Date expiryDate) |
void |
X509CertificateCredentialHandler.update(IdentityContext context,
Account account,
X509Certificate cert,
CredentialStore<?> store,
Date effectiveDate,
Date expiryDate) |
| Modifier and Type | Method and Description |
|---|---|
static <T extends CredentialStorage> |
CredentialUtils.getCurrentCredential(IdentityContext context,
Account agent,
CredentialStore<?> store,
Class<T> storageClass)
Returns the current credential for the given
Agent. |
static boolean |
CredentialUtils.isLastCredentialExpired(IdentityContext context,
Account agent,
CredentialStore<?> store,
Class<? extends CredentialStorage> storageClass) |
| Modifier and Type | Class and Description |
|---|---|
class |
Agent
An
Account implementation that represents a non-human authenticating entity |
class |
User
This class represents a User; a human agent that may authenticate with the application
|
| Modifier and Type | Method and Description |
|---|---|
Account |
GroupMembership.getMember() |
| Modifier and Type | Method and Description |
|---|---|
static void |
SampleModel.addToGroup(RelationshipManager relationshipManager,
Account member,
Group group)
|
static void |
SampleModel.removeFromGroup(RelationshipManager relationshipManager,
Account member,
Group group)
|
void |
GroupMembership.setMember(Account member) |
| Constructor and Description |
|---|
GroupMembership(Account member,
Group group) |
| Modifier and Type | Method and Description |
|---|---|
<T extends CredentialStorage> |
CredentialStore.retrieveCredentials(IdentityContext context,
Account account,
Class<T> storageClass)
Returns a List of all credential state of the specified class, for the specified Account
|
<T extends CredentialStorage> |
CredentialStore.retrieveCurrentCredential(IdentityContext context,
Account account,
Class<T> storageClass)
Return the currently active credential state of the specified class, for the specified Account
|
void |
CredentialStore.storeCredential(IdentityContext context,
Account account,
CredentialStorage storage)
Store the specified credential state
|
void |
IdentityStore.updateCredential(IdentityContext context,
Account account,
Object credential,
Date effectiveDate,
Date expiryDate)
Updates the specified credential value for the specified Agent.
|
Copyright © 2013. All Rights Reserved.