Package com.attivio.sdk.server.global
Interface GlobalMap
-
- All Superinterfaces:
java.lang.AutoCloseable
,java.io.Closeable
@Deprecated public interface GlobalMap extends java.io.Closeable
Deprecated.This API should no longer be used and is scheduled for removal in a future releaseA global data structure with semantics similar toMap
except thatput()
ting in a null value removes the entry from the map. There is no interface for getting the contents of aGlobalMap
. TheGlobalMapListener
is used to listen for changes to the map.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
put(java.lang.String key, java.lang.String value)
Deprecated.Update akey
tovalue
.
-
-
-
Method Detail
-
put
void put(java.lang.String key, java.lang.String value) throws AttivioException
Deprecated.Update akey
tovalue
.If
value
isnull
the key is removed from the map.- Throws:
AttivioException
-
-