001    /**
002     * Copyright 2010-2013 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     */
016    package org.kuali.common.jdbc.config;
017    
018    import org.kuali.common.util.project.KualiProjectConstants;
019    import org.kuali.common.util.project.model.ProjectIdentifier;
020    
021    /**
022     * @deprecated
023     */
024    @Deprecated
025    public class JdbcProjectConstants {
026    
027            private static final String GID = KualiProjectConstants.COMMON_GROUP_ID;
028            private static final String AID = "kuali-jdbc";
029            private static final String KUALI_SQL_AID = "kuali-sql";
030    
031            public static final ProjectIdentifier PROJECT_IDENTIFIER = new ProjectIdentifier(GID, AID);
032    
033            public static final ProjectIdentifier KUALI_SQL_PROJECT_IDENTIFIER = new ProjectIdentifier(GID, KUALI_SQL_AID);
034    
035            @Deprecated
036            public static final String GROUP_ID = GID;
037    
038            @Deprecated
039            public static final String ARTIFACT_ID = AID;
040    
041            @Deprecated
042            public static final String PROJECT_ID = GROUP_ID + ":" + ARTIFACT_ID;
043    
044            @Deprecated
045            public static final String SQL_ARTIFACT_ID = KUALI_SQL_AID;
046    
047            @Deprecated
048            public static final String SQL_PROJECT_ID = GROUP_ID + ":" + SQL_ARTIFACT_ID;
049    
050    }