]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms/src/org/argeo/cms/auth/RemoteAuthResponse.java
FS utils throws IOException
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / 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 }