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 void
addHeader(String name, String value)
void
end()
If the response is finished, end it.OutputStream
getOutputStream()
void
resetCookie(String name, String path)
void
sendError(int code)
void
sendError(int code, String message)
void
setCookie(String name, String value, String path, String domain, int maxAge, boolean secure, boolean httpOnly)
void
setHeader(String name, String value)
void
setStatus(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.
-
-