]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
2bb0252c10e3b418f7696b861c9f84af2e548e87
[tmp/jakarta-migration.git] /
1 /**
2  * This document is a part of the source code and related artifacts for
3  * CollectionSpace, an open source collections management system for museums and
4  * related institutions:
5  *
6  * http://www.collectionspace.org http://wiki.collectionspace.org
7  *
8  * Copyright 2009 University of California at Berkeley
9  *
10  * Licensed under the Educational Community License (ECL), Version 2.0. You may
11  * not use this file except in compliance with this License.
12  *
13  * You may obtain a copy of the ECL 2.0 License at
14  *
15  * https://source.collectionspace.org/collection-space/LICENSE.txt
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
19  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
20  * License for the specific language governing permissions and limitations under
21  * the License.
22  */
23 package org.collectionspace.services.common.vocabulary;
24
25 /**
26  * @author pschmitz
27  *
28  */
29 public interface AuthorityItemJAXBSchema {
30
31     final static String IN_AUTHORITY = "inAuthority"; // REM - Is this a CSID? Or a refname? Either?
32     final static String REF_NAME = "refName";
33     final static String ORDER = "order";
34     final static String SHORT_IDENTIFIER = "shortIdentifier";
35     final static String CSID = "csid";
36     final static String DISPLAY_NAME = "displayName"; // This is the display name element for the Vocabulary service's item     
37     final static String TERM_DISPLAY_NAME = "termDisplayName"; // This is the display name element for all Authority services' items
38     final static String TERM_NAME = "termName";
39     final static String TERM_STATUS = "termStatus";
40     final static String TERM_INFO_GROUP_SCHEMA_NAME = ""; // FIXME: REM - Needs
41     // to be defined.
42     // CSPACE-4813 - Remove all the below values and recompile all authorityitem
43     // related classes
44     final static String DISPLAY_NAME_COMPUTED = "displayNameComputed";
45     final static String SHORT_DISPLAY_NAME = "shortDisplayName";
46     final static String SHORT_DISPLAY_NAME_COMPUTED = "shortDisplayNameComputed";
47     // final static String TERM_STATUS = "termStatus";
48 }