jdk/src/share/classes/javax/security/auth/kerberos/ServicePermission.java
changeset 21955 abc02575919c
parent 18830 90956ead732f
--- a/jdk/src/share/classes/javax/security/auth/kerberos/ServicePermission.java	Tue Dec 03 11:37:25 2013 -0800
+++ b/jdk/src/share/classes/javax/security/auth/kerberos/ServicePermission.java	Tue Dec 03 11:52:18 2013 -0800
@@ -62,7 +62,7 @@
  * Authentication Service exchange.
  * <p>
  * The possible actions are:
- * <p>
+ *
  * <pre>
  *    initiate -              allow the caller to use the credential to
  *                            initiate a security context with a service
@@ -75,7 +75,7 @@
  *
  * For example, to specify the permission to access to the TGT to
  * initiate a security context the permission is constructed as follows:
- * <p>
+ *
  * <pre>
  *     ServicePermission("krbtgt/EXAMPLE.COM@EXAMPLE.COM", "initiate");
  * </pre>
@@ -89,7 +89,7 @@
  * For a Kerberized server the action is "accept". For example, the permission
  * necessary to access and use the secret key of the  Kerberized "host"
  * service (telnet and the likes)  would be constructed as follows:
- * <p>
+ *
  * <pre>
  *     ServicePermission("host/foo.example.com@EXAMPLE.COM", "accept");
  * </pre>