mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
22 lines
537 B
Java
22 lines
537 B
Java
package org.alfresco.rest;
|
|
|
|
/**
|
|
* Test data used in tests
|
|
*
|
|
* @author Rodica Sutu
|
|
*/
|
|
public interface TestData
|
|
{
|
|
/**
|
|
* A user with ALFRESCO_ADMINISTRATORS role.
|
|
* <p>"GROUP_ANOTHER_ADMIN_EXISTS" The ANOTHER_ADMIN user has been created.
|
|
*/
|
|
public static final String ANOTHER_ADMIN = "another_admin";
|
|
|
|
/**
|
|
* The default password used when creating test users.
|
|
*/
|
|
public static final String DEFAULT_PASSWORD = "password";
|
|
public static final String DEFAULT_EMAIL = "default@alfresco.com";
|
|
}
|