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