summaryrefslogtreecommitdiffstats
path: root/pki/base/tks/shared/webapps/ROOT/index.jsp
blob: d3a2276bd6414b5556a3fbdac09998e982849a2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- --- BEGIN COPYRIGHT BLOCK ---
     Copyright (C) 2006 Red Hat, Inc.
     All rights reserved.
     --- END COPYRIGHT BLOCK --- -->
<%
  String op = request.getParameter("op");
  if (op == null || op.equals("")) {
    String redirectURL = "/ca/ee/ca";
    response.sendRedirect(redirectURL);
  } else if (op.equals("enroll")) {
    /* redirect to enrollment servlet */
  }
%>