Interface RequestMessage
-
- All Superinterfaces:
VersionedMessage
public interface RequestMessage extends VersionedMessage
The message sent from the client to the server.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFACTORYstatic java.lang.StringINVOCATIONstatic java.lang.StringOPERATIONS-
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 java.util.List<InvocationMessage>getInvocations()java.util.List<OperationMessage>getOperations()java.lang.StringgetRequestFactory()voidsetInvocations(java.util.List<InvocationMessage> value)voidsetOperations(java.util.List<OperationMessage> value)voidsetRequestFactory(java.lang.String value)-
Methods inherited from interface com.google.web.bindery.requestfactory.shared.messages.VersionedMessage
getVersion, setVersion
-
-
-
-
Field Detail
-
FACTORY
static final java.lang.String FACTORY
- See Also:
- Constant Field Values
-
INVOCATION
static final java.lang.String INVOCATION
- See Also:
- Constant Field Values
-
OPERATIONS
static final java.lang.String OPERATIONS
- See Also:
- Constant Field Values
-
-
Method Detail
-
getInvocations
@PropertyName("I") java.util.List<InvocationMessage> getInvocations()
-
getOperations
@PropertyName("O") java.util.List<OperationMessage> getOperations()
-
getRequestFactory
@PropertyName("F") java.lang.String getRequestFactory()
-
setInvocations
@PropertyName("I") void setInvocations(java.util.List<InvocationMessage> value)
-
setOperations
@PropertyName("O") void setOperations(java.util.List<OperationMessage> value)
-
setRequestFactory
@PropertyName("F") void setRequestFactory(java.lang.String value)
-
-