X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fjpatest%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fauthentication%2Fjpa%2FJpaUserAdministrationTest.java;fp=security%2Fjpatest%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fusermgt%2Fjpa%2FJpaUserAdministrationTest.java;h=2e95c823f096ad17e2116c3d01a42d5924c1d0d9;hb=03b34d260efda9f7df9fe35a703acd83c0cfe317;hp=e823d94474606d8a3c3a7a4bd55f6823ccd8963b;hpb=0adf8fb6e00f08a022379cff5edb43fcde30184c;p=utils diff --git a/security/jpatest/src/test/java/org/wamblee/usermgt/jpa/JpaUserAdministrationTest.java b/security/jpatest/src/test/java/org/wamblee/security/authentication/jpa/JpaUserAdministrationTest.java similarity index 87% rename from security/jpatest/src/test/java/org/wamblee/usermgt/jpa/JpaUserAdministrationTest.java rename to security/jpatest/src/test/java/org/wamblee/security/authentication/jpa/JpaUserAdministrationTest.java index e823d944..2e95c823 100644 --- a/security/jpatest/src/test/java/org/wamblee/usermgt/jpa/JpaUserAdministrationTest.java +++ b/security/jpatest/src/test/java/org/wamblee/security/authentication/jpa/JpaUserAdministrationTest.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.wamblee.usermgt.jpa; +package org.wamblee.security.authentication.jpa; import java.lang.reflect.Method; import java.sql.Connection; @@ -23,23 +23,25 @@ import org.apache.commons.logging.LogFactory; import org.junit.Ignore; import org.wamblee.cache.EhCache; import org.wamblee.io.ClassPathResource; +import org.wamblee.security.authentication.GroupSet; +import org.wamblee.security.authentication.NameValidator; +import org.wamblee.security.authentication.RegexpNameValidator; +import org.wamblee.security.authentication.User; +import org.wamblee.security.authentication.UserAdministration; +import org.wamblee.security.authentication.UserAdministrationImpl; +import org.wamblee.security.authentication.UserAdministrationImplTest; +import org.wamblee.security.authentication.UserSet; +import org.wamblee.security.authentication.jpa.JpaGroupSet; +import org.wamblee.security.authentication.jpa.JpaUserSet; import org.wamblee.security.encryption.Md5HexMessageDigester; import org.wamblee.security.encryption.MessageDigester; import org.wamblee.support.persistence.JpaTester; import org.wamblee.support.persistence.TransactionProxyFactory; import org.wamblee.support.persistence.DatabaseUtils.JdbcUnitOfWork; -import org.wamblee.usermgt.GroupSet; -import org.wamblee.usermgt.NameValidator; -import org.wamblee.usermgt.RegexpNameValidator; -import org.wamblee.usermgt.User; -import org.wamblee.usermgt.UserAdministration; -import org.wamblee.usermgt.UserAdministrationImpl; -import org.wamblee.usermgt.UserAdministrationImplTest; -import org.wamblee.usermgt.UserSet; /** * User administration tests with persistence based on Hibernate. This executes - * the same test cases as {@link org.wamblee.usermgt.UserAdministrationImplTest} + * the same test cases as {@link org.wamblee.security.authentication.UserAdministrationImplTest} * with in addition, one test case that executes all Hibernate test cases * separately with each test case in its own transaction. *