Package net.shibboleth.oidc.metadata
Interface BackingStore<I,T>
-
- Type Parameters:
I- the identifier typeT- the type of object stored, referenced by the key.
- All Known Subinterfaces:
BatchBackingStore<I,T>,DynamicBackingStore<I,T>
public interface BackingStore<I,T>A backing store that holds cached objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<I,List<T>>getIndexedValues()Get the index - mapping keys to values.List<T>getOrderedValues()Get the list of ordered values.
-