src/share/classes/java/rmi/server/LoaderHandler.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

*** 32,42 **** * <code>LoaderHandler</code> is an interface used internally by the RMI * runtime in previous implementation versions. It should never be accessed * by application code. * * @author Ann Wollrath ! * @since JDK1.1 * * @deprecated no replacement */ @Deprecated public interface LoaderHandler { --- 32,42 ---- * <code>LoaderHandler</code> is an interface used internally by the RMI * runtime in previous implementation versions. It should never be accessed * by application code. * * @author Ann Wollrath ! * @since 1.1 * * @deprecated no replacement */ @Deprecated public interface LoaderHandler {
*** 54,64 **** * if the system property <b>java.rmi.server.codebase</b> * contains an invalid URL * @exception ClassNotFoundException * if a definition for the class could not * be found at the codebase location. ! * @since JDK1.1 * @deprecated no replacement */ @Deprecated Class<?> loadClass(String name) throws MalformedURLException, ClassNotFoundException; --- 54,64 ---- * if the system property <b>java.rmi.server.codebase</b> * contains an invalid URL * @exception ClassNotFoundException * if a definition for the class could not * be found at the codebase location. ! * @since 1.1 * @deprecated no replacement */ @Deprecated Class<?> loadClass(String name) throws MalformedURLException, ClassNotFoundException;
*** 73,83 **** * if the <code>codebase</code> paramater * contains an invalid URL * @exception ClassNotFoundException * if a definition for the class could not * be found at the specified URL ! * @since JDK1.1 * @deprecated no replacement */ @Deprecated Class<?> loadClass(URL codebase, String name) throws MalformedURLException, ClassNotFoundException; --- 73,83 ---- * if the <code>codebase</code> paramater * contains an invalid URL * @exception ClassNotFoundException * if a definition for the class could not * be found at the specified URL ! * @since 1.1 * @deprecated no replacement */ @Deprecated Class<?> loadClass(URL codebase, String name) throws MalformedURLException, ClassNotFoundException;
*** 85,95 **** /** * Returns the security context of the given class loader. * * @param loader a class loader from which to get the security context * @return the security context ! * @since JDK1.1 * @deprecated no replacement */ @Deprecated Object getSecurityContext(ClassLoader loader); } --- 85,95 ---- /** * Returns the security context of the given class loader. * * @param loader a class loader from which to get the security context * @return the security context ! * @since 1.1 * @deprecated no replacement */ @Deprecated Object getSecurityContext(ClassLoader loader); }