public interface IWebSerialDeserial
Modifier and Type | Method and Description |
---|---|
IObjectSerialDeserial<?> |
getIObjectSerialDeserial(String mimeType)
Returns the
IObjectSerialDeserial for the specific MIME type |
boolean |
isMimeTypeSupported(String mimeType)
Check if a given MIME type is handled.
|
void |
objectToResponse(Object targetObject,
org.apache.wicket.request.http.WebResponse response,
String mimeType)
Write the object in input to the response converting it to a given MIME type.
|
<T> T |
requestToObject(org.apache.wicket.request.http.WebRequest request,
Class<T> argClass,
String mimeType)
Extract an instance of argClass form the request.
|
void objectToResponse(Object targetObject, org.apache.wicket.request.http.WebResponse response, String mimeType) throws org.apache.wicket.WicketRuntimeException
targetObject
- the object instance to serialize to string.response
- the response object.mimeType
- the MIME type of the response.Exception
org.apache.wicket.WicketRuntimeException
<T> T requestToObject(org.apache.wicket.request.http.WebRequest request, Class<T> argClass, String mimeType) throws org.apache.wicket.WicketRuntimeException
request
- the request object.argClass
- the type of the object we want to extract.mimeType
- the MIME type of the request.org.apache.wicket.WicketRuntimeException
boolean isMimeTypeSupported(String mimeType)
mimeType
- the MIME type we want to check.IObjectSerialDeserial<?> getIObjectSerialDeserial(String mimeType)
IObjectSerialDeserial
for the specific MIME typemimeType
- Copyright © 2015. All rights reserved.