copy from sdk/src/org/opends/sdk/sasl/PasswordCallbackHandler.java
copy to sdk/tests/unit-tests-testng/src/com/sun/opends/sdk/util/UtilTestCase.java
| File was copied 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 com.sun.opends.sdk.util; |
| | | |
| | | |
| | | |
| | | import javax.security.auth.callback.PasswordCallback; |
| | | import org.opends.sdk.OpenDSTestCase; |
| | | import org.testng.annotations.Test; |
| | | |
| | | |
| | | |
| | | /** |
| | | * Password call-back. |
| | | * An abstract class that all util unit tests should extend. Util represents the |
| | | * classes found directly under the package org.opends.sdk.util. |
| | | */ |
| | | public interface PasswordCallbackHandler |
| | | @Test(groups = { "precommit", "util", "sdk" }, sequential = true) |
| | | public abstract class UtilTestCase extends OpenDSTestCase |
| | | { |
| | | public boolean handle(PasswordCallback callback); |
| | | } |