Interface TransactionStore<V extends BasicTransaction>
-
- All Superinterfaces:
Map<edu.uiuc.ncsa.security.core.Identifier,V>
,edu.uiuc.ncsa.security.core.Store<V>
- All Known Implementing Classes:
AggregateTransactionStore
,FSTransactionStore
,SQLBaseTransactionStore
,SQLServiceTransactionStore
,TransactionCache
,TransactionMemoryStore
public interface TransactionStore<V extends BasicTransaction> extends edu.uiuc.ncsa.security.core.Store<V>
A store for delegation transactions.Created by Jeff Gaynor
on Mar 18, 2011 at 3:38:20 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
get(AccessToken accessToken)
V
get(AuthorizationGrant authorizationGrant)
V
get(Verifier verifier)
V
getByProxyID(edu.uiuc.ncsa.security.core.Identifier proxyID)
edu.uiuc.ncsa.security.storage.data.MapConverter
getMapConverter()
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
get
V get(AuthorizationGrant authorizationGrant)
-
get
V get(AccessToken accessToken)
-
getByProxyID
V getByProxyID(edu.uiuc.ncsa.security.core.Identifier proxyID)
-
getMapConverter
edu.uiuc.ncsa.security.storage.data.MapConverter getMapConverter()
-
-