index.jsp
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <!--
  2.  Licensed to the Apache Software Foundation (ASF) under one or more
  3.   contributor license agreements.  See the NOTICE file distributed with
  4.   this work for additional information regarding copyright ownership.
  5.   The ASF licenses this file to You under the Apache License, Version 2.0
  6.   (the "License"); you may not use this file except in compliance with
  7.   the License.  You may obtain a copy of the License at
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.   Unless required by applicable law or agreed to in writing, software
  10.   distributed under the License is distributed on an "AS IS" BASIS,
  11.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.   See the License for the specific language governing permissions and
  13.   limitations under the License.
  14. -->
  15. <%
  16.   if (request.getParameter("logoff") != null) {
  17.     session.invalidate();
  18.     response.sendRedirect("index.jsp");
  19.     return;
  20.   }
  21. %>
  22. <html>
  23. <head>
  24. <title>Protected Page for Examples</title>
  25. </head>
  26. <body bgcolor="white">
  27. You are logged in as remote user
  28. <b><%= util.HTMLFilter.filter(request.getRemoteUser()) %></b>
  29. in session <b><%= session.getId() %></b><br><br>
  30. <%
  31.   if (request.getUserPrincipal() != null) {
  32. %>
  33.     Your user principal name is
  34.     <b><%= util.HTMLFilter.filter(request.getUserPrincipal().getName()) %></b>
  35.     <br><br>
  36. <%
  37.   } else {
  38. %>
  39.     No user principal could be identified.<br><br>
  40. <%
  41.   }
  42. %>
  43. <%
  44.   String role = request.getParameter("role");
  45.   if (role == null)
  46.     role = "";
  47.   if (role.length() > 0) {
  48.     if (request.isUserInRole(role)) {
  49. %>
  50.       You have been granted role
  51.       <b><%= util.HTMLFilter.filter(role) %></b><br><br>
  52. <%
  53.     } else {
  54. %>
  55.       You have <i>not</i> been granted role
  56.       <b><%= util.HTMLFilter.filter(role) %></b><br><br>
  57. <%
  58.     }
  59.   }
  60. %>
  61. To check whether your username has been granted a particular role,
  62. enter it here:
  63. <form method="GET" action='<%= response.encodeURL("index.jsp") %>'>
  64. <input type="text" name="role" value="<%= util.HTMLFilter.filter(role) %>">
  65. </form>
  66. <br><br>
  67. If you have configured this app for form-based authentication, you can log
  68. off by clicking
  69. <a href='<%= response.encodeURL("index.jsp?logoff=true") %>'>here</a>.
  70. This should cause you to be returned to the logon page after the redirect
  71. that is performed.
  72. </body>
  73. </html>