Searched refs:CallbackHandlerProtection (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/security/KeyStore/
H A DKeyStoreBuilder.java63 new CallbackHandlerProtection(new DummyHandler()));
80 builder = Builder.newInstance("JKS", null, KSFILE, new CallbackHandlerProtection(handler));
87 builder = Builder.newInstance("JKS", null, KSFILE, new CallbackHandlerProtection(handler));
104 builder = Builder.newInstance("My", p, new CallbackHandlerProtection(handler));
113 builder = Builder.newInstance("My", p, new CallbackHandlerProtection(handler));
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyStore.java316 public static class CallbackHandlerProtection class in class:KeyStore
322 * Constructs a new CallbackHandlerProtection from a
328 public CallbackHandlerProtection(CallbackHandler handler) { method in class:KeyStore.CallbackHandlerProtection
1479 * <code>CallbackHandlerProtection</code>, the password is obtained
1507 * of either PasswordProtection or CallbackHandlerProtection; or
1516 (protection instanceof CallbackHandlerProtection == false)) {
1519 "CallbackHandlerProtection");
1566 if (protection instanceof CallbackHandlerProtection == false) {
1602 ((CallbackHandlerProtection)protection)
1696 if (protection instanceof CallbackHandlerProtection
[all...]
H A DKeyStoreSpi.java393 } else if (protection instanceof CallbackHandlerProtection) {
395 ((CallbackHandlerProtection)protection).getCallbackHandler();
412 + " be PasswordProtection or CallbackHandlerProtection");
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java846 } else if (pp instanceof CallbackHandlerProtection) {
847 handler = ((CallbackHandlerProtection)pp).getCallbackHandler();
851 "PasswordProtection or CallbackHandlerProtection");

Completed in 43 milliseconds