Class AbstractPostRequest<T>
- java.lang.Object
-
- org.n52.sensorweb.server.helgoland.adapters.web.request.AbstractRequest
-
- org.n52.sensorweb.server.helgoland.adapters.web.request.AbstractPostRequest<T>
-
public abstract class AbstractPostRequest<T> extends AbstractRequest
-
-
Constructor Summary
Constructors Constructor Description AbstractPostRequest()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract StringgetContent()abstract org.n52.janmayen.http.MediaTypegetContentType()abstract booleanhasContent()abstract AbstractPostRequest<T>setContent(T content)
-
-
-
Method Detail
-
setContent
public abstract AbstractPostRequest<T> setContent(T content)
-
getContent
public abstract String getContent() throws com.fasterxml.jackson.core.JsonProcessingException
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
hasContent
public abstract boolean hasContent()
-
getContentType
public abstract org.n52.janmayen.http.MediaType getContentType()
-
-