6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
Replace www.isi.edu/in-notes with www.ietf.org/rfc Reviewed-by: martin
This commit is contained in:
parent
3927da83d0
commit
0c958f899e
@ -58,25 +58,22 @@ input streams.
|
||||
PKWARE ZIP File Format Specification</a> - Language Encoding Flag (EFS) to
|
||||
encode ZIP entry filename and comment fields using UTF-8.
|
||||
<p>
|
||||
<li><a href="http://www.isi.edu/in-notes/rfc1950.txt">
|
||||
<li><a href="http://www.ietf.org/rfc/rfc1950.txt">
|
||||
ZLIB Compressed Data Format Specification version 3.3</a>
|
||||
|
||||
<a href="http://www.isi.edu/in-notes/rfc1950.ps">
|
||||
(PostScript)</a>
|
||||
<a href="http://www.ietf.org/rfc/rfc1950.txt.pdf">(pdf)</a>
|
||||
(RFC 1950)
|
||||
<p>
|
||||
<li><a href="http://www.isi.edu/in-notes/rfc1951.txt">
|
||||
<li><a href="http://www.ietf.org/rfc/rfc1951.txt">
|
||||
DEFLATE Compressed Data Format Specification version 1.3</a>
|
||||
|
||||
<a href="http://www.isi.edu/in-notes/rfc1951.ps">
|
||||
(PostScript)</a>
|
||||
<a href="http://www.ietf.org/rfc/rfc1951.txt.pdf">(pdf)</a>
|
||||
(RFC 1951)
|
||||
<p>
|
||||
<li><a href="http://www.isi.edu/in-notes/rfc1952.txt">
|
||||
<li><a href="http://www.ietf.org/rfc/rfc1952.txt">
|
||||
GZIP file format specification version 4.3</a>
|
||||
|
||||
<a href="http://www.isi.edu/in-notes/rfc1952.ps">
|
||||
(PostScript)</a>
|
||||
<a href="http://www.ietf.org/rfc/rfc1952.txt.pdf">(pdf)</a>
|
||||
(RFC 1952)
|
||||
<p>
|
||||
<li>CRC-32 checksum is described in RFC 1952 (above)
|
||||
|
@ -34,7 +34,7 @@ import javax.naming.directory.SearchControls;
|
||||
* of events fired when objects named in a directory context changes.
|
||||
*<p>
|
||||
* The methods in this interface support identification of objects by
|
||||
* <A HREF="ftp://ftp.isi.edu/in-notes/rfc2254.txt">RFC 2254</a>
|
||||
* <A HREF="http://www.ietf.org/rfc/rfc2254.txt">RFC 2254</a>
|
||||
* search filters.
|
||||
*
|
||||
*<P>Using the search filter, it is possible to register interest in objects
|
||||
|
@ -27,7 +27,7 @@ package javax.naming.ldap;
|
||||
|
||||
/**
|
||||
* This interface represents an LDAPv3 control as defined in
|
||||
* <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>.
|
||||
* <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>.
|
||||
*<p>
|
||||
* The LDAPv3 protocol uses controls to send and receive additional data
|
||||
* to affect the behavior of predefined operations.
|
||||
|
@ -37,7 +37,7 @@ import com.sun.naming.internal.ResourceManager;
|
||||
/**
|
||||
* This abstract class represents a factory for creating LDAPv3 controls.
|
||||
* LDAPv3 controls are defined in
|
||||
* <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>.
|
||||
* <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>.
|
||||
*<p>
|
||||
* When a service provider receives a response control, it uses control
|
||||
* factories to return the specific/appropriate control class implementation.
|
||||
|
@ -29,7 +29,7 @@ import javax.naming.NamingException;
|
||||
|
||||
/**
|
||||
* This interface represents an LDAPv3 extended operation request as defined in
|
||||
* <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>.
|
||||
* <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>.
|
||||
* <pre>
|
||||
* ExtendedRequest ::= [APPLICATION 23] SEQUENCE {
|
||||
* requestName [0] LDAPOID,
|
||||
|
@ -27,7 +27,7 @@ package javax.naming.ldap;
|
||||
|
||||
/**
|
||||
* This interface represents an LDAP extended operation response as defined in
|
||||
* <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>.
|
||||
* <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>.
|
||||
* <pre>
|
||||
* ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
|
||||
* COMPONENTS OF LDAPResult,
|
||||
|
@ -29,7 +29,7 @@ import javax.naming.NamingException;
|
||||
|
||||
/**
|
||||
* This interface represents an unsolicited notification as defined in
|
||||
* <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>.
|
||||
* <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>.
|
||||
* An unsolicited notification is sent by the LDAP server to the LDAP
|
||||
* client without any provocation from the client.
|
||||
* Its format is that of an extended response (<tt>ExtendedResponse</tt>).
|
||||
|
@ -30,7 +30,7 @@ import javax.naming.event.NamingListener;
|
||||
/**
|
||||
* This interface is for handling <tt>UnsolicitedNotificationEvent</tt>.
|
||||
* "Unsolicited notification" is defined in
|
||||
* <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>.
|
||||
* <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>.
|
||||
* It allows the server to send unsolicited notifications to the client.
|
||||
* A <tt>UnsolicitedNotificationListener</tt> must:
|
||||
*<ol>
|
||||
|
@ -83,7 +83,7 @@ import java.io.Serializable;
|
||||
* doc flavor's MIME type is one of the standard media types telling how to
|
||||
* interpret the sequence of characters or bytes. For a list of standard media
|
||||
* types, see the Internet Assigned Numbers Authority's (IANA's) <A
|
||||
* HREF="http://www.isi.edu/in-notes/iana/assignments/media-types/">Media Types
|
||||
* HREF="http://www.iana.org/assignments/media-types/">Media Types
|
||||
* Directory</A>. Interface {@link Doc Doc} provides two utility operations,
|
||||
* {@link Doc#getReaderForText() getReaderForText} and
|
||||
* {@link Doc#getStreamForBytes() getStreamForBytes()}, to help a
|
||||
|
Loading…
x
Reference in New Issue
Block a user