public class PortletContextMap extends StringKeyedMapAdapter<java.lang.Object> implements SharedMap<java.lang.String,java.lang.Object>
Constructor and Description |
---|
PortletContextMap(javax.portlet.PortletContext context)
Create a map wrapping given portlet context.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
getAttribute(java.lang.String key)
Hook method that needs to be implemented by concrete subclasses.
|
protected java.util.Iterator<java.lang.String> |
getAttributeNames()
Hook method that needs to be implemented by concrete subclasses.
|
java.lang.Object |
getMutex()
Returns the shared mutex that may be synchronized on using a synchronized block.
|
protected void |
removeAttribute(java.lang.String key)
Hook method that needs to be implemented by concrete subclasses.
|
protected void |
setAttribute(java.lang.String key,
java.lang.Object value)
Hook method that needs to be implemented by concrete subclasses.
|
clear, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
public PortletContextMap(javax.portlet.PortletContext context)
protected java.lang.Object getAttribute(java.lang.String key)
StringKeyedMapAdapter
getAttribute
in class StringKeyedMapAdapter<java.lang.Object>
key
- the key to lookupprotected void setAttribute(java.lang.String key, java.lang.Object value)
StringKeyedMapAdapter
setAttribute
in class StringKeyedMapAdapter<java.lang.Object>
key
- the key to associate the value withvalue
- the value to associate with the keyprotected void removeAttribute(java.lang.String key)
StringKeyedMapAdapter
removeAttribute
in class StringKeyedMapAdapter<java.lang.Object>
key
- the key to removeprotected java.util.Iterator<java.lang.String> getAttributeNames()
StringKeyedMapAdapter
getAttributeNames
in class StringKeyedMapAdapter<java.lang.Object>
public java.lang.Object getMutex()
SharedMap
synchronized (sharedMap.getMutex()) { // do synchronized work }