com.google.gwt.requestfactory.shared
Interface RequestFactory.RequestDefinition

Enclosing interface:
RequestFactory

public static interface RequestFactory.RequestDefinition

Implemented by enums that define the mapping between request objects and service methods.


Method Summary
 java.lang.String getDomainClassName()
          Returns the name of the (domain) class that contains the method to be invoked on the server.
 java.lang.String getDomainMethodName()
          Returns the name of the method to be invoked on the server.
 java.lang.Class<?>[] getParameterTypes()
          Returns the parameter types of the method to be invoked on the server.
 java.lang.Class<?> getReturnType()
          Returns the return type of the method to be invoked on the server.
 boolean isReturnTypeList()
          Returns true if the request returns Lists of getReturnType(), false for single instances.
 java.lang.String name()
          Returns the name.
 

Method Detail

getDomainClassName

java.lang.String getDomainClassName()
Returns the name of the (domain) class that contains the method to be invoked on the server.


getDomainMethodName

java.lang.String getDomainMethodName()
Returns the name of the method to be invoked on the server.


getParameterTypes

java.lang.Class<?>[] getParameterTypes()
Returns the parameter types of the method to be invoked on the server.


getReturnType

java.lang.Class<?> getReturnType()
Returns the return type of the method to be invoked on the server.


isReturnTypeList

boolean isReturnTypeList()
Returns true if the request returns Lists of getReturnType(), false for single instances.


name

java.lang.String name()
Returns the name.