< prev index next >

src/java.security.jgss/share/classes/org/ietf/jgss/GSSManager.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -53,11 +53,11 @@
  * throw a well-defined exception in case provider based configuration is
  * not supported. Applications that expect to be portable should be aware
  * of this and recover cleanly by catching the exception.<p>
  *
  * It is envisioned that there will be three most common ways in which
- * providers will be used:<p>
+ * providers will be used:
  * <ol>
  * <li> The application does not care about what provider is used (the
  * default case).
  * <li> The application wants a particular provider to be used
  * preferentially, either for a particular mechanism or all the

@@ -85,11 +85,11 @@
  * GSSManager's should not be mixed, and if possible, a different
  * GSSManager instance should be created if the application wants to invoke
  * the <code>addProviderAtFront</code> method on a GSSManager that has
  * already created an object.<p>
  *
- *  Here is some sample code showing how the GSSManager might be used: <p>
+ *  Here is some sample code showing how the GSSManager might be used:
  * <pre>
  *     GSSManager manager = GSSManager.getInstance();
  *
  *     Oid krb5Mechanism = new Oid("1.2.840.113554.1.2.2");
  *     Oid krb5PrincipalNameType = new Oid("1.2.840.113554.1.2.2.1");

@@ -114,11 +114,11 @@
  *                                                krb5Mechanism,
  *                                                userCreds,
  *                                                GSSContext.DEFAULT_LIFETIME);
  * </pre><p>
  *
- * The server side might use the following variation of this source:<p>
+ * The server side might use the following variation of this source:
  *
  * <pre>
  *     // Acquire credentials for the server
  *     GSSCredential serverCreds = manager.createCredential(serverName,
  *                                             GSSCredential.DEFAULT_LIFETIME,

@@ -385,11 +385,11 @@
      * this method. <p>
      *
      * Non-default values for lifetime cannot always be honored by the
      * underlying mechanisms, thus applications should be prepared to call
      * {@link GSSCredential#getRemainingLifetime() getRemainingLifetime}
-     * on the returned credential.<p>
+     * on the returned credential.
      *
      * @param name the name of the principal for whom this credential is to be
      * acquired.  Use <code>null</code> to specify the default principal.
      * @param lifetime The number of seconds that credentials should remain
      * valid.  Use {@link GSSCredential#INDEFINITE_LIFETIME

@@ -440,11 +440,11 @@
      * this method.<p>
      *
      * Non-default values for lifetime cannot always be honored by the
      * underlying mechanisms, thus applications should be prepared to call
      * {@link GSSCredential#getRemainingLifetime() getRemainingLifetime}
-     * on the returned credential.<p>
+     * on the returned credential.
      *
      * @param name the name of the principal for whom this credential is to
      * be acquired.  Use <code>null</code> to specify the default
      * principal.
      * @param lifetime The number of seconds that credentials should remain

@@ -490,11 +490,11 @@
      * to be thrown from this method.<p>
      *
      * Non-default values for lifetime cannot always be honored by the
      * underlying mechanism, thus applications should be prepared to call
      * {@link GSSContext#getLifetime() getLifetime} on the returned
-     * context.<p>
+     * context.
      *
      * @param peer the name of the target peer.
      * @param mech the Oid of the desired mechanism.  Use <code>null</code>
      * to request the default mechanism.
      * @param myCred the credentials of the initiator.  Use

@@ -608,33 +608,33 @@
      * pluggable provider architecture it should throw a GSSException with
      * the status code GSSException.UNAVAILABLE to indicate that the
      * operation is unavailable.<p>
      *
      * Suppose an application desired that the provider A always be checked
-     * first when any mechanism is needed, it would call:<p>
+     * first when any mechanism is needed, it would call:
      * <pre>
      *         GSSManager mgr = GSSManager.getInstance();
      *         // mgr may at this point have its own pre-configured list
      *         // of provider preferences. The following will prepend to
      *         // any such list:
      *
      *         mgr.addProviderAtFront(A, null);
      * </pre>
      * Now if it also desired that the mechanism of Oid m1 always be
      * obtained from the provider B before the previously set A was checked,
-     * it would call:<p>
+     * it would call:
      * <pre>
      *         mgr.addProviderAtFront(B, m1);
      * </pre>
      * The GSSManager would then first check with B if m1 was needed. In
      * case B did not provide support for m1, the GSSManager would continue
      * on to check with A.  If any mechanism m2 is needed where m2 is
      * different from m1 then the GSSManager would skip B and check with A
      * directly.<p>
      *
      * Suppose at a later time the following call is made to the same
-     * GSSManager instance:<p>
+     * GSSManager instance:
      * <pre>
      *         mgr.addProviderAtFront(B, null)
      * </pre>
      * then the previous setting with the pair (B, m1) is subsumed by this
      * and should be removed. Effectively the list of preferences now

@@ -682,35 +682,35 @@
      * operation is unavailable.<p>
      *
      * Suppose an application desired that when a mechanism of Oid m1 is
      * needed the system default providers always be checked first, and only
      * when they do not support m1 should a provider A be checked. It would
-     * then make the call:<p>
+     * then make the call:
      * <pre>
      *         GSSManager mgr = GSSManager.getInstance();
      *         mgr.addProviderAtEnd(A, m1);
      * </pre>
      * Now, if it also desired that for all mechanisms the provider B be
      * checked after all configured providers have been checked, it would
-     * then call:<p>
+     * then call:
      * <pre>
      *         mgr.addProviderAtEnd(B, null);
      * </pre>
      * Effectively the list of preferences now becomes {..., (A, m1), (B,
      * null)}.<p>
      *
      * Suppose at a later time the following call is made to the same
-     * GSSManager instance:<p>
+     * GSSManager instance:
      * <pre>
      *         mgr.addProviderAtEnd(B, m2)
      * </pre>
      * then the previous setting with the pair (B, null) subsumes this and
      * therefore this request should be ignored. The same would happen if a
      * request is made for the already existing pairs of (A, m1) or (B,
      * null).<p>
      *
-     * Please note, however, that the following call:<p>
+     * Please note, however, that the following call:
      * <pre>
      *         mgr.addProviderAtEnd(A, null)
      * </pre>
      * is not subsumed by the previous setting of (A, m1) and the list will
      * effectively become {..., (A, m1), (B, null), (A, null)}
< prev index next >