%@page buffer="5kb" autoFlush="true" session="false"%> <%@ page language="java" import="java.util.*, java.awt.*"%> <%! public void jspInit(){ oracle.security.am.pbl.transport.http.proxy.ServletCatalog.registerServlet("/slo.jsp", this); } %> <% // Set the Expires and Cache Control Headers response.setHeader("Cache-Control", "no-cache"); response.setHeader("Pragma", "no-cache"); response.setHeader("Expires", "Thu, 29 Oct 1969 17:04:19 GMT"); // Set request and response type request.setCharacterEncoding("UTF-8"); response.setContentType("text/html; charset=UTF-8"); ResourceBundle msgBundle = ResourceBundle.getBundle("oracle.security.fed.util.fed.resource.UserResource", request.getLocale()); String direction; try { ComponentOrientation co = ComponentOrientation.getOrientation(request.getLocale()); if (co.isLeftToRight() || co.equals(ComponentOrientation.UNKNOWN)) direction = "LTR"; else direction = "RTL"; } catch (Exception e){ direction = "LTR"; } %>