public interface ExpiringTokenStorageProviderI
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
$0 |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
createExpiringToken(java.lang.String serviceName,
byte[] value,
long expiryms)
Works like @see #createExpiringToken(String,String,byte[],long), but creates a non-conflicting tokenName
within the store, stores the value and returns the chosen tokenName.
|
void |
createExpiringToken(java.lang.String serviceName,
java.lang.String tokenName,
byte[] value,
long expiryms)
Creates a time limited association of the given service and token name to a byte array value (usually a key).
|
byte[] |
destroyExpiringToken(java.lang.String serviceName,
java.lang.String tokenName)
Destroys a time limited token immediately
|
byte[] |
retrieveExpiringToken(java.lang.String serviceName,
java.lang.String tokenName)
Retrieves a time limited token
|
static final java.lang.String $0
void createExpiringToken(java.lang.String serviceName, java.lang.String tokenName, byte[] value, long expiryms)
serviceName
- name (fqn) of the service who provided the valuetokenName
- name of the token variable which in conjunction with the service name provides a key to the valuevalue
- the actual value, as byte arrayexpiryms
- the time the value will be valid. After that time, the value is removed from the storejava.lang.String createExpiringToken(java.lang.String serviceName, byte[] value, long expiryms)
serviceName
- name (fqn) of the service who provided the valuevalue
- the actual value, as byte arrayexpiryms
- the time the value will be valid. After that time, the value is removed from the storebyte[] retrieveExpiringToken(java.lang.String serviceName, java.lang.String tokenName)
serviceName
- name (fqn) of the service who provided the valuetokenName
- name of the token variable which in conjunction with the service name provides a key to the valuebyte[] destroyExpiringToken(java.lang.String serviceName, java.lang.String tokenName)
serviceName
- name (fqn) of the service who provided the valuetokenName
- name of the token variable which in conjunction with the service name provides a key to the valueCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.