Uses of Class
org.springframework.extensions.webscripts.connector.Response
-
Packages that use Response Package Description org.springframework.extensions.webscripts org.springframework.extensions.webscripts.connector -
-
Uses of Response in org.springframework.extensions.webscripts
Methods in org.springframework.extensions.webscripts that return Response Modifier and Type Method Description ResponseScriptRemote. call(java.lang.String uri)Invoke a specific URI on the default endpointResponseScriptRemoteConnector. call(java.lang.String uri)Invokes a URI on the endpoint via a GET request.protected ResponseRemoteStore. callDelete(java.lang.String uri)Perform a DELETE call to the given URI.protected ResponseRemoteStore. callGet(java.lang.String uri)Perform a GET call to the given URI.protected ResponseRemoteStore. callPost(java.lang.String uri, java.io.InputStream in)Perform a POST call to the given URI with the supplied input.ResponseScriptRemoteConnector. del(java.lang.String uri)Invokes a URI on a remote service as DELETE request.ResponseScriptRemoteConnector. get(java.lang.String uri)Invokes a GET request URI on the endpoint.ResponseScriptRemoteConnector. post(java.lang.String uri, java.lang.String body)Invokes a URI on a remote service, passing the supplied body as a POST request.ResponseScriptRemoteConnector. post(java.lang.String uri, java.lang.String body, java.lang.String contentType)Invokes a URI on a remote service, passing the supplied body as a POST request.ResponseScriptRemoteConnector. put(java.lang.String uri, java.lang.String body)Invokes a URI on a remote service, passing the supplied body as a PUT request.ResponseScriptRemoteConnector. put(java.lang.String uri, java.lang.String body, java.lang.String contentType)Invokes a URI on a remote service, passing the supplied body as a PUT request. -
Uses of Response in org.springframework.extensions.webscripts.connector
Methods in org.springframework.extensions.webscripts.connector that return Response Modifier and Type Method Description ResponseAbstractConnector. call(java.lang.String uri)ResponseAuthenticatingConnector. call(java.lang.String uri)ResponseAuthenticatingConnector. call(java.lang.String uri, ConnectorContext context)ResponseAuthenticatingConnector. call(java.lang.String uri, ConnectorContext context, java.io.InputStream in)ResponseAuthenticatingConnector. call(java.lang.String uri, ConnectorContext context, java.io.InputStream in, java.io.OutputStream out)ResponseAuthenticatingConnector. call(java.lang.String uri, ConnectorContext context, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)ResponseConnector. call(java.lang.String uri)Invokes a URI on a remote service.ResponseConnector. call(java.lang.String uri, ConnectorContext context)Invokes a URI on a remote service.ResponseConnector. call(java.lang.String uri, ConnectorContext context, java.io.InputStream in)Invokes a URI on a remote service, passing the input as supplied via a POST/PUT.ResponseConnector. call(java.lang.String uri, ConnectorContext context, java.io.InputStream in, java.io.OutputStream out)Invokes a URI on a remote service.ResponseConnector. call(java.lang.String uri, ConnectorContext context, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)Invokes a URI on a remote service and streams back results to the provided response object.ResponseHttpConnector. call(java.lang.String uri, ConnectorContext context)ResponseHttpConnector. call(java.lang.String uri, ConnectorContext context, java.io.InputStream in)ResponseHttpConnector. call(java.lang.String uri, ConnectorContext context, java.io.InputStream in, java.io.OutputStream out)ResponseHttpConnector. call(java.lang.String uri, ConnectorContext context, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)ResponseRemoteClient. call(java.lang.String uri)Call a remote WebScript uri.ResponseRemoteClient. call(java.lang.String uri, boolean buildResponseString, java.io.InputStream in)Call a remote WebScript uri.ResponseRemoteClient. call(java.lang.String uri, java.io.InputStream in)Call a remote WebScript uri.ResponseRemoteClient. call(java.lang.String uri, java.io.InputStream in, java.io.OutputStream out)Call a remote WebScript uri.ResponseRemoteClient. call(java.lang.String uri, java.io.OutputStream out)Call a remote WebScript uri.ResponseRemoteClient. call(java.lang.String uri, java.lang.String body)Call a remote WebScript uri, passing the supplied body as a POST request (unless the request method is set to override as say PUT).ResponseRemoteClient. call(java.lang.String uri, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)Call a remote WebScript uri.Methods in org.springframework.extensions.webscripts.connector with parameters of type Response Modifier and Type Method Description protected voidAbstractAuthenticator. processResponse(Response response, ConnectorSession connectorSession)Retrieves headers from response and stores onto the Connector Sessionprotected voidHttpConnector. processResponse(RemoteClient remoteClient, Response response)Retrieves cookie headers from response and stores back onto the Connector Session
-