Package com.soffid.iam.sync.intf
Class ExtensibleObject
- java.lang.Object
-
- com.soffid.iam.sync.intf.ExtensibleObject
-
- All Implemented Interfaces:
Serializable
,Map<String,Object>
- Direct Known Subclasses:
ExtensibleObject
public class ExtensibleObject extends Object implements Serializable, Map<String,Object>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,Object>
attributes
-
Constructor Summary
Constructors Constructor Description ExtensibleObject()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<String,Object>>
entrySet()
boolean
equals(Object o)
Object
get(Object key)
Object
getAttribute(String attribute)
Set<String>
getAttributes()
String
getObjectType()
boolean
isEmpty()
Set<String>
keySet()
Object
put(String key, Object value)
void
putAll(Map<? extends String,? extends Object> m)
Object
remove(Object key)
void
removeAttribte(String attribute)
Object
setAttribute(String attribute, Object value)
void
setObjectType(String objectType)
int
size()
static ExtensibleObject
toExtensibleObject(ExtensibleObject o1)
String
toString()
Collection<Object>
values()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<String,Object>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<String,Object>
-
equals
public boolean equals(Object o)
-
setObjectType
public void setObjectType(String objectType)
-
getObjectType
public String getObjectType()
-
removeAttribte
public void removeAttribte(String attribute)
-
toExtensibleObject
public static ExtensibleObject toExtensibleObject(ExtensibleObject o1)
-
-