Class FSClientApprovalStore<V extends ClientApproval>
- java.lang.Object
-
- edu.uiuc.ncsa.security.storage.IndexedStreamStore<V>
-
- edu.uiuc.ncsa.security.storage.FileStore<V>
-
- org.oa4mp.delegation.server.storage.impl.FSClientApprovalStore<V>
-
- All Implemented Interfaces:
edu.uiuc.ncsa.security.core.Store<V>,Map<edu.uiuc.ncsa.security.core.Identifier,V>,ClientApprovalStore<V>
public abstract class FSClientApprovalStore<V extends ClientApproval> extends edu.uiuc.ncsa.security.storage.FileStore<V> implements ClientApprovalStore<V>
A store for client approvals.Created by Jeff Gaynor
on 11/3/11 at 3:43 PM
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFSClientApprovalStore(File file, edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<V> idp, edu.uiuc.ncsa.security.storage.data.MapConverter<V> cp, boolean removeEmptyFiles, boolean removeFailedFiles)protectedFSClientApprovalStore(File storeDirectory, File indexDirectory, edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<V> idp, edu.uiuc.ncsa.security.storage.data.MapConverter<V> cp, boolean removeEmptyFiles, boolean removeFailedFiles)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetPendingCount()intgetUnapprovedCount()Get the number of approvals that are as yet unapproved.edu.uiuc.ncsa.security.core.XMLConverter<V>getXMLConverter()booleanisApproved(edu.uiuc.ncsa.security.core.Identifier identifier)Returns true if the client with the given identifier has been approved, false otherwise.-
Methods inherited from class edu.uiuc.ncsa.security.storage.FileStore
checkPermissions, clear, containsKey, containsValue, create, createIndexEntry, delete, doSetup, entrySet, get, getAll, getIndexDirectory, getIndexEntry, getItemFile, getItemFile, getMapConverter, getStorageDirectory, keySet, loadByIdentifier, loadFile, loadFromIndex, putAll, realRemove, realSave, register, remove, remove, removeByID, removeIndexEntry, save, search, search, search, search, setIndexDirectory, setStorageDirectory, size, size, toString, update, update, values
-
Methods inherited from class edu.uiuc.ncsa.security.storage.IndexedStreamStore
createIndexEntry, getCreatedItems, hashString, isEmpty, loadStream, put, put
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.oa4mp.delegation.server.storage.ClientApprovalStore
getMapConverter, statusSearch
-
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
-
isApproved
public boolean isApproved(edu.uiuc.ncsa.security.core.Identifier identifier)
Description copied from interface:ClientApprovalStoreReturns true if the client with the given identifier has been approved, false otherwise. Not that this returns false even in the case that there is no such client.- Specified by:
isApprovedin interfaceClientApprovalStore<V extends ClientApproval>- Returns:
-
getUnapprovedCount
public int getUnapprovedCount()
Description copied from interface:ClientApprovalStoreGet the number of approvals that are as yet unapproved.- Specified by:
getUnapprovedCountin interfaceClientApprovalStore<V extends ClientApproval>- Returns:
-
getPendingCount
public int getPendingCount()
- Specified by:
getPendingCountin interfaceClientApprovalStore<V extends ClientApproval>
-
getXMLConverter
public edu.uiuc.ncsa.security.core.XMLConverter<V> getXMLConverter()
- Specified by:
getXMLConverterin interfaceedu.uiuc.ncsa.security.core.Store<V extends ClientApproval>- Overrides:
getXMLConverterin classedu.uiuc.ncsa.security.storage.FileStore<V extends ClientApproval>
-
-