index.jsp revision 489761051efce28826426f994be8dfc4916bda31
0N/A<%--
2362N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright (c) 2009 Sun Microsystems Inc. All Rights Reserved
0N/A
0N/A The contents of this file are subject to the terms
2362N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
2362N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
0N/A opensso/legal/CDDLv1.0.txt
0N/A See the License for the specific language governing
0N/A permission and limitations under the License.
0N/A
0N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at opensso/legal/CDDLv1.0.txt.
0N/A If applicable, add the following below the CDDL Header,
2362N/A with the fields enclosed by brackets [] replaced by
2362N/A your own identifying information:
2362N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A
0N/A $Id: index.jsp,v 1.2 2009/12/15 01:28:22 huacui Exp $
0N/A
0N/A--%>
0N/A
0N/A
0N/A<%@page contentType="text/html" pageEncoding="UTF-8"%>
0N/A<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
0N/A "http://www.w3.org/TR/html4/loose.dtd">
0N/A
0N/A<html>
0N/A <head>
0N/A <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
0N/A <title>Token Service</title>
0N/A </head>
0N/A <body>
0N/A <h1>Service Consumers Metadata Management</h1>
0N/A <h2>
0N/A Register a service consumer<br>
0N/A </h2>
0N/A <form name="consumer_reg" action="registerconsumer.jsp" method="POST">
0N/A Service Consumer Name: <input type="text" name="name" value="" size="30" /><br><br>
0N/A Service Consumer X509 Certificate (optional): <br><textarea name="cert" rows="10" cols="80"></textarea><br><br><br>
0N/A Register this Service Consumer <input type="submit" value="Register" name="cons_reg" /><br>
0N/A </form>
0N/A <hr><br>
0N/A <h2>
0N/A Delete a service consumer<br>
0N/A </h2>
0N/A <form name="consumer_del" action="deleteconsumer.jsp" method="POST">
0N/A Service Consumer Key: <input type="text" name="conskey" value="" size="100" /><br><br>
Delete this Service Consumer <input type="submit" value="Delete" name="cons_del" /><br>
</form>
<hr><br>
</body>
</html>