001/**
002 * Copyright 2010-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.common.util.project;
017
018public final class KualiProjectConstants {
019
020        private KualiProjectConstants() {
021        }
022
023        public static final String KUALI_COMMON_GROUP_ID = "org.kuali.common";
024
025        public static final String STUDENT_GROUP_ID = "org.kuali.student";
026
027        /**
028         * @deprecated Use KUALI_COMMON_GROUP_ID instead
029         */
030        @Deprecated
031        public static final String COMMON_GROUP_ID = KUALI_COMMON_GROUP_ID;
032
033        /**
034         * @deprecated
035         */
036        @Deprecated
037        public static final String RICE_GROUP_ID = "org.kuali.rice";
038
039        /**
040         * @deprecated
041         */
042        @Deprecated
043        public static final String MOBILITY_GROUP_ID = "org.kuali.mobility";
044
045        /**
046         * @deprecated
047         */
048        @Deprecated
049        public static final String OLE_GROUP_ID = "org.kuali.ole";
050
051        /**
052         * @deprecated
053         */
054        @Deprecated
055        public static final String KPME_GROUP_ID = "org.kuali.kpme";
056
057        /**
058         * @deprecated
059         */
060        @Deprecated
061        public static final String KFS_GROUP_ID = "org.kuali.kfs";
062
063        /**
064         * @deprecated
065         */
066        @Deprecated
067        public static final String READY_GROUP_ID = "org.kuali.ready";
068
069        /**
070         * @deprecated
071         */
072        @Deprecated
073        public static final String COEUS_GROUP_ID = "org.kuali.coeus";
074
075}