1 package org.kuali.student.core.rule.service;
2
3 import org.kuali.student.core.rule.dto.RuleInfo;
4 import org.kuali.student.r2.common.constants.CommonServiceConstants;
5
6 /**
7 * This class holds the constants used by the Rule service
8 */
9 public class RuleServiceNamespace {
10 public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "rule";
11 public static final String REF_OBJECT_URI_RULE = NAMESPACE + "/" + RuleInfo.class.getSimpleName();
12 public static final String SERVICE_NAME_LOCAL_PART = "RuleService";
13 }