| org.tigris.subversion.javahl.PromptUserPassword2
PromptUserPassword2 | public interface PromptUserPassword2 extends PromptUserPassword(Code) | | Partial interface for receiving callbacks for authentication. New
applications should use PromptUserPassword3 instead.
|
Field Summary | |
final public static int | AccecptTemporary | final public static int | AcceptPermanently Accept the connection to the server forever. | final public static int | AcceptTemporary Accept the connection to the server once. | final public static int | Reject Reject the connection to the server. |
Method Summary | |
public int | askTrustSSLServer(String info, boolean allowPermanently) If there are problems with the certifcate of the SSL-server, this
callback will be used to deside if the connection will be used. |
AccecptTemporary | final public static int AccecptTemporary(Code) | | |
AcceptPermanently | final public static int AcceptPermanently(Code) | | Accept the connection to the server forever.
|
AcceptTemporary | final public static int AcceptTemporary(Code) | | Accept the connection to the server once.
|
Reject | final public static int Reject(Code) | | Reject the connection to the server.
|
askTrustSSLServer | public int askTrustSSLServer(String info, boolean allowPermanently)(Code) | | If there are problems with the certifcate of the SSL-server, this
callback will be used to deside if the connection will be used.
Parameters: info - the probblems with the certificate. Parameters: allowPermanently - if AcceptPermantly is a legal answer one of Reject/AcceptTemporary/AcceptPermanently |
|
|