Package org.wildfly.security.http.oidc
Interface OidcHttpFacade.Response
-
- Enclosing class:
- OidcHttpFacade
public static interface OidcHttpFacade.Response
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddHeader(String name, String value)voidend()If the response is finished, end it.OutputStreamgetOutputStream()voidresetCookie(String name, String path)voidsendError(int code)voidsendError(int code, String message)voidsetCookie(String name, String value, String path, String domain, int maxAge, boolean secure, boolean httpOnly)voidsetHeader(String name, String value)voidsetStatus(int status)
-
-
-
Method Detail
-
setStatus
void setStatus(int status)
-
setCookie
void setCookie(String name, String value, String path, String domain, int maxAge, boolean secure, boolean httpOnly)
-
getOutputStream
OutputStream getOutputStream()
-
sendError
void sendError(int code)
-
sendError
void sendError(int code, String message)
-
end
void end()
If the response is finished, end it.
-
-