mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/tests/unit-tests-testng/src/com/sun/opends/sdk/util/UtilTestCase.java
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
@@ -22,21 +22,23 @@
 * 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);
}