-
public interface PostDataProvider<T>Interface for post data provider
-
-
Method Summary
Modifier and Type Method Description abstract TgetRawData()Get modifiable raw data. abstract Array<byte>getData()Get the data abstract StringgetContentType()Get the content type of the data abstract booleanisEmpty()Checks whether this provider is empty or not. -
-
Method Detail
-
getRawData
abstract T getRawData()
Get modifiable raw data.The given data should be modifiable.
-
getContentType
abstract String getContentType()
Get the content type of the data
-
isEmpty
abstract boolean isEmpty()
Checks whether this provider is empty or not.
-
-
-
-