Class AuthenticationSimpleHttpInvokerRequestExecutor

java.lang.Object
org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor
org.springframework.remoting.httpinvoker.SimpleHttpInvokerRequestExecutor
org.springframework.security.remoting.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor
All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.remoting.httpinvoker.HttpInvokerRequestExecutor

@Deprecated public class AuthenticationSimpleHttpInvokerRequestExecutor extends org.springframework.remoting.httpinvoker.SimpleHttpInvokerRequestExecutor
Deprecated.
as of 5.6.0 with no replacement
Adds BASIC authentication support to SimpleHttpInvokerRequestExecutor.
  • Field Summary

    Fields inherited from class org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor

    CONTENT_TYPE_SERIALIZED_OBJECT, ENCODING_GZIP, HTTP_HEADER_ACCEPT_ENCODING, HTTP_HEADER_ACCEPT_LANGUAGE, HTTP_HEADER_CONTENT_ENCODING, HTTP_HEADER_CONTENT_LENGTH, HTTP_HEADER_CONTENT_TYPE, HTTP_METHOD_POST
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
    doPrepareConnection(HttpURLConnection con, int contentLength)
    Deprecated.
    Provided so subclasses can perform additional configuration if required (eg set additional request headers for non-security related information etc).
    protected void
    prepareConnection(HttpURLConnection con, int contentLength)
    Deprecated.
    Called every time a HTTP invocation is made.

    Methods inherited from class org.springframework.remoting.httpinvoker.SimpleHttpInvokerRequestExecutor

    doExecuteRequest, isGzipResponse, openConnection, readResponseBody, setConnectTimeout, setReadTimeout, validateResponse, writeRequestBody

    Methods inherited from class org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor

    createObjectInputStream, decorateInputStream, decorateOutputStream, doReadRemoteInvocationResult, doWriteRemoteInvocation, executeRequest, getBeanClassLoader, getByteArrayOutputStream, getContentType, isAcceptGzipEncoding, readRemoteInvocationResult, setAcceptGzipEncoding, setBeanClassLoader, setContentType, writeRemoteInvocation

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • AuthenticationSimpleHttpInvokerRequestExecutor

      public AuthenticationSimpleHttpInvokerRequestExecutor()
      Deprecated.
  • Method Details

    • doPrepareConnection

      protected void doPrepareConnection(HttpURLConnection con, int contentLength) throws IOException
      Deprecated.
      Provided so subclasses can perform additional configuration if required (eg set additional request headers for non-security related information etc).
      Parameters:
      con - the HTTP connection to prepare
      contentLength - the length of the content to send
      Throws:
      IOException
    • prepareConnection

      protected void prepareConnection(HttpURLConnection con, int contentLength) throws IOException
      Deprecated.
      Called every time a HTTP invocation is made.

      Simply allows the parent to setup the connection, and then adds an Authorization HTTP header property that will be used for BASIC authentication.

      The SecurityContextHolder is used to obtain the relevant principal and credentials.

      Overrides:
      prepareConnection in class org.springframework.remoting.httpinvoker.SimpleHttpInvokerRequestExecutor
      Parameters:
      con - the HTTP connection to prepare
      contentLength - the length of the content to send
      Throws:
      IOException - if thrown by HttpURLConnection methods