< prev index next >

src/java.naming/share/classes/javax/naming/ldap/ExtendedRequest.java

Print this page

        

@@ -41,11 +41,11 @@
   * The methods in this class are used by the service provider to construct
   * the bits to send to the LDAP server. Applications typically only deal with
   * the classes that implement this interface, supplying them with
   * any information required for a particular extended operation request.
   * It would then pass such a class as an argument to the
-  * <tt>LdapContext.extendedOperation()</tt> method for performing the
+  * {@code LdapContext.extendedOperation()} method for performing the
   * LDAPv3 extended operation.
   *<p>
   * For example, suppose the LDAP server supported a 'get time' extended operation.
   * It would supply GetTimeRequest and GetTimeResponse classes:
   *<blockquote><pre>

@@ -88,11 +88,11 @@
 
     /**
       * Retrieves the object identifier of the request.
       *
       * @return The non-null object identifier string representing the LDAP
-      *         <tt>ExtendedRequest.requestName</tt> component.
+      *         {@code ExtendedRequest.requestName} component.
       */
     public String getID();
 
     /**
       * Retrieves the ASN.1 BER encoded value of the LDAP extended operation

@@ -102,11 +102,11 @@
       * the request value. It does not include the request OID.
       * This method is called by the service provider to get the bits to
       * put into the extended operation to be sent to the LDAP server.
       *
       * @return A possibly null byte array representing the ASN.1 BER encoded
-      *         contents of the LDAP <tt>ExtendedRequest.requestValue</tt>
+      *         contents of the LDAP {@code ExtendedRequest.requestValue}
       *         component.
       * @exception IllegalStateException If the encoded value cannot be retrieved
       * because the request contains insufficient or invalid data/state.
       */
     public byte[] getEncodedValue();
< prev index next >