Interface TXStore<V extends TXRecord>
-
- All Superinterfaces:
Map<edu.uiuc.ncsa.security.core.Identifier,V>
,edu.uiuc.ncsa.security.core.Store<V>
- All Known Implementing Classes:
SQLTXRecordStore
,TXFileStore
,TXMemoryStore
public interface TXStore<V extends TXRecord> extends edu.uiuc.ncsa.security.core.Store<V>
Created by Jeff Gaynor
on 12/14/20 at 8:54 AM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<V>
getByParentID(edu.uiuc.ncsa.security.core.Identifier parentID)
Get a list of all records for a given parent.int
getCountByParent(edu.uiuc.ncsa.security.core.Identifier parentID)
edu.uiuc.ncsa.security.storage.data.MapConverter<V>
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
-
getMapConverter
edu.uiuc.ncsa.security.storage.data.MapConverter<V> getMapConverter()
-
getByParentID
List<V> getByParentID(edu.uiuc.ncsa.security.core.Identifier parentID)
Get a list of all records for a given parent.- Parameters:
parentID
-- Returns:
-
getCountByParent
int getCountByParent(edu.uiuc.ncsa.security.core.Identifier parentID)
-
-