]> git.argeo.org Git - lgpl/argeo-commons.git/blob - auth/RemoteAuthResponse.java
Prepare next development cycle
[lgpl/argeo-commons.git] / auth / RemoteAuthResponse.java
1 package org.argeo.cms.auth;
2
3 /** Transitional interface to decouple from the Servlet API. */
4 public interface RemoteAuthResponse {
5 /** Set this header to a single value, possibly removing previous values. */
6 void setHeader(String headerName, String value);
7
8 /** Add a value to this header. */
9 void addHeader(String headerName, String value);
10 }