Interface OperationMessage
-
- All Superinterfaces:
IdMessage,VersionedMessage
public interface OperationMessage extends IdMessage, VersionedMessage
Represents an operation to be carried out on a single entity on the server.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.web.bindery.requestfactory.shared.messages.IdMessage
IdMessage.Strength
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringOPERATIONstatic java.lang.StringPROPERTY_MAP-
Fields inherited from interface com.google.web.bindery.requestfactory.shared.messages.IdMessage
CLIENT_ID, SERVER_ID, STRENGTH, SYNTHETIC_ID, TYPE_TOKEN
-
Fields inherited from interface com.google.web.bindery.requestfactory.shared.messages.VersionedMessage
VERSION
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WriteOperationgetOperation()java.util.Map<java.lang.String,Splittable>getPropertyMap()voidsetOperation(WriteOperation value)voidsetPropertyMap(java.util.Map<java.lang.String,Splittable> map)-
Methods inherited from interface com.google.web.bindery.requestfactory.shared.messages.IdMessage
getClientId, getServerId, getStrength, getSyntheticId, getTypeToken, setClientId, setServerId, setStrength, setSyntheticId, setTypeToken
-
Methods inherited from interface com.google.web.bindery.requestfactory.shared.messages.VersionedMessage
getVersion, setVersion
-
-
-
-
Field Detail
-
OPERATION
static final java.lang.String OPERATION
- See Also:
- Constant Field Values
-
PROPERTY_MAP
static final java.lang.String PROPERTY_MAP
- See Also:
- Constant Field Values
-
-
Method Detail
-
getOperation
@PropertyName("O") WriteOperation getOperation()
-
getPropertyMap
@PropertyName("P") java.util.Map<java.lang.String,Splittable> getPropertyMap()
-
setOperation
@PropertyName("O") void setOperation(WriteOperation value)
-
setPropertyMap
@PropertyName("P") void setPropertyMap(java.util.Map<java.lang.String,Splittable> map)
-
-