1 package org.kuali.student.deploy.config; 2 3 import java.util.Collections; 4 import java.util.List; 5 6 public class DeployConstants { 7 8 /** 9 * The unmodifiable list of configuration ids needed by the process that deploys KS applications 10 */ 11 public static final List<String> DEPLOY_CONFIG_IDS = getDeployConfigIds(); 12 13 protected static List<String> getDeployConfigIds() { 14 String configId = KSDeploymentResourcesConfig.DEPLOY.getConfigId(); 15 return Collections.singletonList(configId); 16 } 17 18 }