]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms/src/org/argeo/cms/auth/RemoteAuthCallback.java
Use runtime namespace context as default.
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / auth / RemoteAuthCallback.java
1 package org.argeo.cms.auth;
2
3 import javax.security.auth.callback.Callback;
4
5 /** Retrieves credentials from an HTTP request. */
6 public class RemoteAuthCallback implements Callback {
7 private RemoteAuthRequest request;
8 private RemoteAuthResponse response;
9 private RemoteAuthSession httpSession;
10
11 public RemoteAuthRequest getRequest() {
12 return request;
13 }
14
15 public void setRequest(RemoteAuthRequest request) {
16 this.request = request;
17 }
18
19 public RemoteAuthResponse getResponse() {
20 return response;
21 }
22
23 public void setResponse(RemoteAuthResponse response) {
24 this.response = response;
25 }
26
27 public RemoteAuthSession getHttpSession() {
28 return httpSession;
29 }
30
31 public void setHttpSession(RemoteAuthSession httpSession) {
32 this.httpSession = httpSession;
33 }
34
35 }