All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kuali.common.util.service.SpringContext Maven / Gradle / Ivy

package org.kuali.common.util.service;

import java.util.List;

public class SpringContext {

	List locations;
	List> annotatedClasses;
	List beanNames;
	List beans;
	PropertySourceContext propertySourceContext;

	public List getLocations() {
		return locations;
	}

	public void setLocations(List locations) {
		this.locations = locations;
	}

	public List> getAnnotatedClasses() {
		return annotatedClasses;
	}

	public void setAnnotatedClasses(List> annotatedClasses) {
		this.annotatedClasses = annotatedClasses;
	}

	public List getBeanNames() {
		return beanNames;
	}

	public void setBeanNames(List beanNames) {
		this.beanNames = beanNames;
	}

	public List getBeans() {
		return beans;
	}

	public void setBeans(List beans) {
		this.beans = beans;
	}

	public PropertySourceContext getPropertySourceContext() {
		return propertySourceContext;
	}

	public void setPropertySourceContext(PropertySourceContext propertySourceContext) {
		this.propertySourceContext = propertySourceContext;
	}

}