View Javadoc

1   /**
2    * Copyright 2010-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.jdbc.config;
17  
18  import org.kuali.common.util.project.KualiProjectConstants;
19  import org.kuali.common.util.project.model.ProjectIdentifier;
20  
21  /**
22   * @deprecated
23   */
24  @Deprecated
25  public class JdbcProjectConstants {
26  
27  	private static final String GID = KualiProjectConstants.COMMON_GROUP_ID;
28  	private static final String AID = "kuali-jdbc";
29  	private static final String KUALI_SQL_AID = "kuali-sql";
30  
31  	public static final ProjectIdentifier PROJECT_IDENTIFIER = new ProjectIdentifier(GID, AID);
32  
33  	public static final ProjectIdentifier KUALI_SQL_PROJECT_IDENTIFIER = new ProjectIdentifier(GID, KUALI_SQL_AID);
34  
35  	@Deprecated
36  	public static final String GROUP_ID = GID;
37  
38  	@Deprecated
39  	public static final String ARTIFACT_ID = AID;
40  
41  	@Deprecated
42  	public static final String PROJECT_ID = GROUP_ID + ":" + ARTIFACT_ID;
43  
44  	@Deprecated
45  	public static final String SQL_ARTIFACT_ID = KUALI_SQL_AID;
46  
47  	@Deprecated
48  	public static final String SQL_PROJECT_ID = GROUP_ID + ":" + SQL_ARTIFACT_ID;
49  
50  }