Class RepresentationDocType
- java.lang.Object
-
- org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.model.RepresentationDocType
-
public class RepresentationDocType extends Object
The documentation type for representations.
Created on: Jun 16, 2008- Author:
- Martin Grotzke (martin.grotzke at freiheit.com)
-
-
Constructor Summary
Constructors Constructor Description RepresentationDocType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDoc()QNamegetElement()StringgetExample()StringgetMediaType()LonggetStatus()voidsetDoc(String doc)voidsetElement(QName element)voidsetExample(String example)voidsetMediaType(String mediaType)voidsetStatus(Long status)
-
-
-
Method Detail
-
getElement
public QName getElement()
- Returns:
- the element
-
setElement
public void setElement(QName element)
- Parameters:
element- the element to set
-
getExample
public String getExample()
- Returns:
- the example
-
setExample
public void setExample(String example)
- Parameters:
example- the example to set
-
getStatus
public Long getStatus()
- Returns:
- the status
-
setStatus
public void setStatus(Long status)
- Parameters:
status- the status to set
-
getMediaType
public String getMediaType()
- Returns:
- the mediaType
-
setMediaType
public void setMediaType(String mediaType)
- Parameters:
mediaType- the mediaType to set
-
getDoc
public String getDoc()
- Returns:
- the doc
-
setDoc
public void setDoc(String doc)
- Parameters:
doc- the doc to set
-
-