package com.tandbergtv.workflow.driver.search;

public class SearchKeyConstants {
/*
 * I don't understand the purpose of this class - are these properties of the entities
 * used in HQL queries or keys for search parameters? Why are both in the same class? Why isn't
 * this an enum? I have a feeling this overloading is going to cause weird issues.
 */
	public static final String STATUS = "status";
	public static final String TOKEN_STATUS = "tokenstatus";
	public static final String ACCESSLEVEL = "AccessLevel";
	public static final String WO_START_DATE = "start";
	public static final String OR_MAP = "OrMap";
	public static final String TEMPLATE_NAME = "processDefinition.name";
	public static final String TEMPLATE_CLASS = "template.class";
	public static final String RESOURCE_GROUP = "resourceGroup";
	public static final String CHILD_TOKEN = "child";
	public static final String PARENT = "parent";
	public static final String PROCESS_INSTANCE = "processInstance";
	public static final String PROCESS_DEFINITION = "processDefinition";
}
