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 Summary
Modifier and TypeMethodDescriptionint
getIndex()
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.boolean
Returns whether theskipIfEmpty flag was found in the schema.
-
Method Details
-
getName
Returns the name of the HTTP part.- Returns:
- The name of the HTTP part.
-
isSkipIfEmpty
Returns whether theskipIfEmpty flag was found in the schema.- Returns:
true if theskipIfEmpty flag was found in the schema.
-
getIndex
Returns the method argument index.- Returns:
- The method argument index.
-
getPartType
Returns the HTTP part type.- Returns:
- The HTTP part type. Never
null .
-
getSerializer
Returns the HTTP part serializer to use for serializing this part.- Returns:
- The HTTP part serializer, or the default if not specified.
-
getSchema
Returns the HTTP part schema information about this part.- Returns:
- The HTTP part schema information, or
null if not found.
-