Interface IRemoteCallParameterDeserializer
- All Known Implementing Classes:
ObjectSerializationParameterDeserializer
public interface IRemoteCallParameterDeserializer
Remote call parameter deserializer.
-
Method Summary
Modifier and TypeMethodDescriptionObject[]
deserializeParameters
(javax.servlet.http.HttpServletRequest req) Deserialize parameters from HttpServletRequest.
-
Method Details
-
deserializeParameters
Object[] deserializeParameters(javax.servlet.http.HttpServletRequest req) throws IOException, javax.servlet.ServletException Deserialize parameters from HttpServletRequest.- Parameters:
req
- the HttpServletRequest. Will not benull
.- Returns:
- Object[] the deserialized parameters.
- Throws:
IOException
- if parameters cannot be deserializedjavax.servlet.ServletException
- if parameters cannot be deserialized
-