public interface WGExtensionDataContainer
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getExtensionData(java.lang.String strName)
Returns the value of an extension data field.
|
java.util.List<java.lang.String> |
getExtensionDataNames()
Returns the names of all extension data fields on this entity
|
void |
removeExtensionData(java.lang.String strName)
Removes an extension data field from this entity
|
void |
writeExtensionData(java.lang.String strName,
java.lang.Object value)
Sets the value of an extension data field.
|
java.lang.Object getExtensionData(java.lang.String strName)
throws WGAPIException
strName - Name of the requested field.WGAPIExceptionvoid writeExtensionData(java.lang.String strName,
java.lang.Object value)
throws WGAPIException
strName - Name of the requested field.value - The value of the fieldWGAPIExceptionjava.util.List<java.lang.String> getExtensionDataNames()
throws WGAPIException
WGBackendExceptionWGAPIExceptionvoid removeExtensionData(java.lang.String strName)
throws WGAPIException
strName - Name of the field to remove.WGAPIException