com.bankframe.ei.txnhandler.impl.responseindex
Class ResponseIndexCachePersister
java.lang.Object
com.bankframe.ei.txnhandler.impl.responseindex.ResponseIndexCachePersister
- All Implemented Interfaces:
- Map
public class ResponseIndexCachePersister
- extends Object
- implements Map
This class is responsible for controlling the interaction between
the Response Index cache maintained in memory and the database RESPONSE_INDEX table. This
class only supports the get() method. Calling any other method will result
in an UnSupportedOperationException.
Nested classes/interfaces inherited from interface java.util.Map |
Map.Entry<K,V> |
ResponseIndexCachePersister
public ResponseIndexCachePersister()
- This method is the default Constructor
size
public int size()
- Specified by:
size
in interface Map
- See Also:
Map.size()
clear
public void clear()
- Specified by:
clear
in interface Map
- See Also:
Map.clear()
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface Map
- See Also:
Map.isEmpty()
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interface Map
- See Also:
Map.containsKey(java.lang.Object)
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interface Map
- See Also:
Map.containsValue(java.lang.Object)
values
public Collection values()
- Specified by:
values
in interface Map
- See Also:
Map.values()
putAll
public void putAll(Map t)
- Specified by:
putAll
in interface Map
- See Also:
Map.putAll(java.util.Map)
entrySet
public Set entrySet()
- Specified by:
entrySet
in interface Map
- See Also:
Map.entrySet()
keySet
public Set keySet()
- Specified by:
keySet
in interface Map
- See Also:
Map.keySet()
get
public Object get(Object key)
- Specified by:
get
in interface Map
- See Also:
Map.get(java.lang.Object)
remove
public Object remove(Object key)
- Specified by:
remove
in interface Map
- See Also:
Map.remove(java.lang.Object)
put
public Object put(Object key,
Object value)
- Specified by:
put
in interface Map
- See Also:
Map.put(java.lang.Object, java.lang.Object)
Copyright © 2005, 2007, Oracle. All rights reserved.