GWT 2.3.0

com.google.web.bindery.requestfactory.shared.messages
Interface RequestMessage

All Superinterfaces:
VersionedMessage

public interface RequestMessage
extends VersionedMessage

The message sent from the client to the server.


Field Summary
static java.lang.String INVOCATION
           
static java.lang.String OPERATIONS
           
 
Fields inherited from interface com.google.web.bindery.requestfactory.shared.messages.VersionedMessage
VERSION
 
Method Summary
 java.util.List<InvocationMessage> getInvocations()
           
 java.util.List<OperationMessage> getOperations()
           
 void setInvocations(java.util.List<InvocationMessage> value)
           
 void setOperations(java.util.List<OperationMessage> value)
           
 
Methods inherited from interface com.google.web.bindery.requestfactory.shared.messages.VersionedMessage
getVersion, setVersion
 

Field Detail

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

@AutoBean.PropertyName(value="I")
java.util.List<InvocationMessage> getInvocations()

getOperations

@AutoBean.PropertyName(value="O")
java.util.List<OperationMessage> getOperations()

setInvocations

@AutoBean.PropertyName(value="I")
void setInvocations(java.util.List<InvocationMessage> value)

setOperations

@AutoBean.PropertyName(value="O")
void setOperations(java.util.List<OperationMessage> value)

GWT 2.3.0