mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
30 lines
1.4 KiB
Java
30 lines
1.4 KiB
Java
package org.alfresco.search;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ ElementType.METHOD })
|
|
public @interface TestGroup
|
|
{
|
|
// Used for TestRail test annotation
|
|
public static final String SEARCH = "search";
|
|
public static final String REST_API = "rest-api";
|
|
|
|
public static final String PREUPGRADE = "pre-upgrade";
|
|
public static final String POSTUPGRADE = "post-upgrade";
|
|
|
|
public static final String ASS_MASTER_SLAVE = "ASS_Master_Slave"; // Alfresco Search Services using master slave configurations
|
|
public static final String ASS_MASTER ="ASS_Master"; // Alfresco search services using master/stand alone mode
|
|
|
|
public static final String NOT_INSIGHT_ENGINE = "Not_InsightEngine"; // When Alfresco Insight Engine 1.0 isn't running
|
|
|
|
public static final String ACS_52n = "ACS_52n"; // Alfresco Content Services 5.2.n
|
|
public static final String ACS_60n = "ACS_60n"; // Alfresco Content Services 6.0 or above
|
|
public static final String ACS_61n = "ACS_61n"; // Alfresco Content Services 6.1 or above
|
|
public static final String ACS_611n = "ACS_611n"; // Alfresco Content Services 6.1.1 or above
|
|
public static final String ACS_62n = "ACS_62n"; // Alfresco Content Services 6.2 or above
|
|
}
|