| File was renamed from sdk/src/org/opends/sdk/sasl/PasswordCallbackHandler.java |
| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Copyright 2009 Sun Microsystems, Inc. |
| | | * Copyright 2010 Sun Microsystems, Inc. |
| | | */ |
| | | |
| | | package org.opends.sdk.sasl; |
| | | package org.opends.sdk; |
| | | |
| | | |
| | | |
| | | import javax.security.auth.callback.PasswordCallback; |
| | | import org.testng.annotations.Test; |
| | | |
| | | |
| | | |
| | | /** |
| | | * Password call-back. |
| | | * An abstract class that all types unit tests should extend. A type represents |
| | | * the classes found directly under the package org.opends.sdk. |
| | | */ |
| | | public interface PasswordCallbackHandler |
| | | |
| | | @Test(groups = { "precommit", "types", "sdk" }, sequential = true) |
| | | public abstract class SdkTestCase extends OpenDSTestCase |
| | | { |
| | | public boolean handle(PasswordCallback callback); |
| | | } |