All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.net.Authenticator Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*

This is not an official specification document, and usage is restricted.

NOTICE


(c) 2005-2007 Sun Microsystems, Inc. All Rights Reserved.

Neither this file nor any files generated from it describe a complete specification, and they may only be used as described below. For example, no permission is given for you to incorporate this file, in whole or in part, in an implementation of a Java specification.

Sun Microsystems Inc. owns the copyright in this file and it is provided to you for informative, as opposed to normative, use. The file and any files generated from it may be used to generate other informative documentation, such as a unified set of documents of API signatures for a platform that includes technologies expressed as Java APIs. The file may also be used to produce "compilation stubs," which allow applications to be compiled and validated for such platforms.

Any work generated from this file, such as unified javadocs or compiled stub files, must be accompanied by this notice in its entirety.

This work corresponds to the API signatures of JSR 219: Foundation Profile 1.1. In the event of a discrepency between this work and the JSR 219 specification, which is available at http://www.jcp.org/en/jsr/detail?id=219, the latter takes precedence. */ package java.net; /** * The class Authenticator represents an object that knows how to obtain * authentication for a network connection. Usually, it will do this * by prompting the user for information. *

* Applications use this class by creating a subclass, and registering * an instance of that subclass with the system with setDefault(). * When authentication is required, the system will invoke a method * on the subclass (like getPasswordAuthentication). The subclass's * method can query about the authentication being requested with a * number of inherited methods (getRequestingXXX()), and form an * appropriate message for the user. *

* All methods that request authentication have a default implementation * that fails. * * @see java.net.Authenticator#setDefault(java.net.Authenticator) * @see java.net.Authenticator#getPasswordAuthentication() * * @author Bill Foote * @version 1.20, 02/02/00 * @since 1.2 */ public abstract class Authenticator { public Authenticator() { } /** * Sets the authenticator that will be used by the networking code * when a proxy or an HTTP server asks for authentication. *

* First, if there is a security manager, its checkPermission * method is called with a * NetPermission("setDefaultAuthenticator") permission. * This may result in a java.lang.SecurityException. * * @param a The authenticator to be set. If a is null then * any previously set authenticator is removed. * * @throws SecurityException * if a security manager exists and its * checkPermission method doesn't allow * setting the default authenticator. * * @see SecurityManager#checkPermission * @see java.net.NetPermission */ public static synchronized void setDefault(Authenticator a) { } /** * Ask the authenticator that has been registered with the system * for a password. *

* First, if there is a security manager, its checkPermission * method is called with a * NetPermission("requestPasswordAuthentication") permission. * This may result in a java.lang.SecurityException. * * @param addr The InetAddress of the site requesting authorization, * or null if not known. * @param port the port for the requested connection * @param protocol The protocol that's requesting the connection * ({@link java.net.Authenticator#getRequestingProtocol()}) * @param prompt A prompt string for the user * @param scheme The authentication scheme * * @return The username/password, or null if one can't be gotten. * * @throws SecurityException * if a security manager exists and its * checkPermission method doesn't allow * the password authentication request. * * @see SecurityManager#checkPermission * @see java.net.NetPermission */ public static PasswordAuthentication requestPasswordAuthentication(InetAddress addr, int port, String protocol, String prompt, String scheme) { return null; } /** * Ask the authenticator that has been registered with the system * for a password. This is the preferred method for requesting a password * because the hostname can be provided in cases where the InetAddress * is not available. *

* First, if there is a security manager, its checkPermission * method is called with a * NetPermission("requestPasswordAuthentication") permission. * This may result in a java.lang.SecurityException. * * @param host The hostname of the site requesting authentication. * @param addr The InetAddress of the site requesting authentication, * or null if not known. * @param port the port for the requested connection. * @param protocol The protocol that's requesting the connection * ({@link java.net.Authenticator#getRequestingProtocol()}) * @param prompt A prompt string for the user which identifies the authentication realm. * @param scheme The authentication scheme * * @return The username/password, or null if one can't be gotten. * * @throws SecurityException * if a security manager exists and its * checkPermission method doesn't allow * the password authentication request. * * @see SecurityManager#checkPermission * @see java.net.NetPermission * @since 1.4 */ public static PasswordAuthentication requestPasswordAuthentication(String host, InetAddress addr, int port, String protocol, String prompt, String scheme) { return null; } /** * Gets the hostname of the * site or proxy requesting authentication, or null * if not available. * * @return the hostname of the connection requiring authentication, or null * if it's not available. * @since 1.4 */ protected final String getRequestingHost() { return null; } /** * Gets the InetAddress of the * site requesting authorization, or null * if not available. * * @return the InetAddress of the site requesting authorization, or null * if it's not available. */ protected final InetAddress getRequestingSite() { return null; } /** * Gets the port number for the requested connection. * @return an int indicating the * port for the requested connection. */ protected final int getRequestingPort() { return 0; } /** * Give the protocol that's requesting the connection. Often this * will be based on a URL, but in a future SDK it could be, for * example, "SOCKS" for a password-protected SOCKS5 firewall. * * @return the protcol, optionally followed by "/version", where * version is a version number. * * @see java.net.URL#getProtocol() */ protected final String getRequestingProtocol() { return null; } /** * Gets the prompt string given by the requestor. * * @return the prompt string given by the requestor (realm for * http requests) */ protected final String getRequestingPrompt() { return null; } /** * Gets the scheme of the requestor (the HTTP scheme * for an HTTP firewall, for example). * * @return the scheme of the requestor * */ protected final String getRequestingScheme() { return null; } /** * Called when password authorization is needed. Subclasses should * override the default implementation, which returns null. * @return The PasswordAuthentication collected from the * user, or null if none is provided. */ protected PasswordAuthentication getPasswordAuthentication() { return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy