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.deploy.config;
017    
018    
019    /**
020     * @deprecated
021     */
022    @Deprecated
023    public enum KualiDeployConfig implements org.kuali.common.util.config.ProjectConfig {
024    
025            DEFAULT(); // Provides the default set of configuration for deploy related processes
026    
027            private final String contextId;
028            private final String configId;
029    
030            private KualiDeployConfig() {
031                    this(null);
032            }
033    
034            private KualiDeployConfig(String contextId) {
035                    this.contextId = contextId;
036                    this.configId = org.kuali.common.util.config.ConfigUtils.getConfigId(this);
037            }
038    
039            @Override
040            public String getGroupId() {
041                    return DeployProjectConstants.GROUP_ID;
042            }
043    
044            @Override
045            public String getArtifactId() {
046                    return DeployProjectConstants.ARTIFACT_ID;
047            }
048    
049            @Override
050            public String getContextId() {
051                    return contextId;
052            }
053    
054            @Override
055            public String getConfigId() {
056                    return configId;
057            }
058    
059    }