View Javadoc

1   package org.kuali.student.r2.core.constants;
2   
3   import org.kuali.student.r2.common.constants.CommonServiceConstants;
4   import org.kuali.student.r2.core.document.dto.DocumentInfo;
5   import org.kuali.student.r2.core.document.dto.RefDocRelationInfo;
6   
7   /**
8    * This class holds the constants used by the Document service
9    *
10   * @Version 2.0
11   * @Author Sri komandur@uw.edu
12   *
13   */
14  public class DocumentServiceConstants {
15      /**
16       * Reference Object URI's
17       */
18      public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "document";
19      public static final String REF_OBJECT_URI_DOCUMENT = NAMESPACE + "/" + DocumentInfo.class.getSimpleName();
20      public static final String REF_OBJECT_URI_DOCUMENT_REF_DOC_RELATION = NAMESPACE + "/" + RefDocRelationInfo.class.getSimpleName();
21  
22  }