use of org.gluu.oxtrust.security.Identity in project oxTrust by GluuFederation.
the class GlobalExceptionHandler method storeRequestURI.
protected void storeRequestURI() {
ExternalContext extContext = FacesContext.getCurrentInstance().getExternalContext();
String requestUri = ((javax.servlet.http.HttpServletRequest) extContext.getRequest()).getRequestURI();
Identity identity = CdiUtil.bean(Identity.class);
identity.setSavedRequestUri(requestUri);
}
Aggregations