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