Class RemoteOperationArg
java.lang.Object
org.apache.juneau.rest.client.remote.RemoteOperationArg
Represents the metadata about an annotated argument of a method on a REST proxy class.
 
See Also:
- 
Method SummaryModifier and TypeMethodDescriptionintgetIndex()Returns the method argument index.getName()Returns the name of the HTTP part.Returns the HTTP part type.Returns the HTTP part schema information about this part.Returns the HTTP part serializer to use for serializing this part.booleanReturns whether theskipIfEmpty flag was found in the schema.
- 
Method Details- 
getNameReturns the name of the HTTP part.- Returns:
- The name of the HTTP part.
 
- 
isSkipIfEmptyReturns whether theskipIfEmpty flag was found in the schema.- Returns:
- true if the- skipIfEmpty flag was found in the schema.
 
- 
getIndexReturns the method argument index.- Returns:
- The method argument index.
 
- 
getPartTypeReturns the HTTP part type.- Returns:
- The HTTP part type.  Never null .
 
- 
getSerializerReturns the HTTP part serializer to use for serializing this part.- Returns:
- The HTTP part serializer, or the default if not specified.
 
- 
getSchemaReturns the HTTP part schema information about this part.- Returns:
- The HTTP part schema information, or null if not found.
 
 
-