org.springframework.security.remoting.httpinvoker
Class AuthenticationSimpleHttpInvokerRequestExecutor
java.lang.Object
org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor
org.springframework.remoting.httpinvoker.SimpleHttpInvokerRequestExecutor
org.springframework.security.remoting.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor
- All Implemented Interfaces:
- Aware, BeanClassLoaderAware, HttpInvokerRequestExecutor
public class AuthenticationSimpleHttpInvokerRequestExecutor
- extends SimpleHttpInvokerRequestExecutor
Adds BASIC authentication support to SimpleHttpInvokerRequestExecutor
.
Method Summary |
protected void |
doPrepareConnection(HttpURLConnection con,
int contentLength)
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)
Called every time a HTTP invocation is made. |
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 |
AuthenticationSimpleHttpInvokerRequestExecutor
public AuthenticationSimpleHttpInvokerRequestExecutor()
doPrepareConnection
protected void doPrepareConnection(HttpURLConnection con,
int contentLength)
throws IOException
- 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 preparecontentLength
- the length of the content to send
- Throws:
IOException
- if thrown by HttpURLConnection methods
prepareConnection
protected void prepareConnection(HttpURLConnection con,
int contentLength)
throws IOException
- 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 SimpleHttpInvokerRequestExecutor
- Parameters:
con
- the HTTP connection to preparecontentLength
- the length of the content to send
- Throws:
IOException
- if thrown by HttpURLConnection methods