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.service; 017 018import java.util.List; 019 020/** 021 * @deprecated 022 */ 023@Deprecated 024public class SpringContext { 025 026 String id; 027 String displayName; 028 List<String> locations; 029 List<Class<?>> annotatedClasses; 030 List<String> beanNames; 031 List<Object> beans; 032 PropertySourceContext propertySourceContext; 033 034 public List<String> getLocations() { 035 return locations; 036 } 037 038 public void setLocations(List<String> locations) { 039 this.locations = locations; 040 } 041 042 public List<Class<?>> getAnnotatedClasses() { 043 return annotatedClasses; 044 } 045 046 public void setAnnotatedClasses(List<Class<?>> annotatedClasses) { 047 this.annotatedClasses = annotatedClasses; 048 } 049 050 public List<String> getBeanNames() { 051 return beanNames; 052 } 053 054 public void setBeanNames(List<String> beanNames) { 055 this.beanNames = beanNames; 056 } 057 058 public List<Object> getBeans() { 059 return beans; 060 } 061 062 public void setBeans(List<Object> beans) { 063 this.beans = beans; 064 } 065 066 public PropertySourceContext getPropertySourceContext() { 067 return propertySourceContext; 068 } 069 070 public void setPropertySourceContext(PropertySourceContext propertySourceContext) { 071 this.propertySourceContext = propertySourceContext; 072 } 073 074 public String getId() { 075 return id; 076 } 077 078 public void setId(String id) { 079 this.id = id; 080 } 081 082 public String getDisplayName() { 083 return displayName; 084 } 085 086 public void setDisplayName(String displayName) { 087 this.displayName = displayName; 088 } 089 090}