Class ResponseDocType
- java.lang.Object
-
- org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.model.ResponseDocType
-
public class ResponseDocType extends java.lang.Object
The documentation type for a response.
Created on: Jun 16, 2008
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<RepresentationDocType>
representation
private java.lang.String
returnDoc
protected java.util.List<WadlParamType>
wadlParam
-
Constructor Summary
Constructors Constructor Description ResponseDocType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<RepresentationDocType>
getRepresentations()
java.lang.String
getReturnDoc()
java.util.List<WadlParamType>
getWadlParams()
boolean
hasRepresentations()
void
setReturnDoc(java.lang.String returnDoc)
-
-
-
Field Detail
-
returnDoc
private java.lang.String returnDoc
-
wadlParam
protected java.util.List<WadlParamType> wadlParam
-
representation
protected java.util.List<RepresentationDocType> representation
-
-
Method Detail
-
getWadlParams
public java.util.List<WadlParamType> getWadlParams()
-
getRepresentations
public java.util.List<RepresentationDocType> getRepresentations()
-
hasRepresentations
public boolean hasRepresentations()
-
getReturnDoc
public java.lang.String getReturnDoc()
- Returns:
- the returnDoc
-
setReturnDoc
public void setReturnDoc(java.lang.String returnDoc)
- Parameters:
returnDoc
- the returnDoc to set
-
-