]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms/src/org/argeo/cms/auth/RemoteAuthRequest.java
Mini desktop graalvm packaging.
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / auth / RemoteAuthRequest.java
1 package org.argeo.cms.auth;
2
3 import java.util.Locale;
4
5 /** Transitional interface to decouple from the Servlet API. */
6 public interface RemoteAuthRequest {
7 RemoteAuthSession getSession();
8
9 RemoteAuthSession createSession();
10
11 Locale getLocale();
12
13 Object getAttribute(String key);
14
15 void setAttribute(String key, Object object);
16
17 String getHeader(String key);
18
19 String getRemoteAddr();
20
21 int getLocalPort();
22
23 int getRemotePort();
24
25 }