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

org.kuali.maven.plugins.spring.PropertySourcesContext Maven / Gradle / Ivy

package org.kuali.maven.plugins.spring;

import java.util.List;
import java.util.Properties;

import org.kuali.common.util.spring.service.SpringService;

public class PropertySourcesContext {

	SpringService service;
	String location;
	Class annotatedClass;
	String propertiesBeanName;
	Properties properties;
	List activeProfiles;
	List defaultProfiles;

	public SpringService getService() {
		return service;
	}

	public void setService(SpringService service) {
		this.service = service;
	}

	public String getLocation() {
		return location;
	}

	public void setLocation(String location) {
		this.location = location;
	}

	public Class getAnnotatedClass() {
		return annotatedClass;
	}

	public void setAnnotatedClass(Class annotatedClass) {
		this.annotatedClass = annotatedClass;
	}

	public String getPropertiesBeanName() {
		return propertiesBeanName;
	}

	public void setPropertiesBeanName(String propertiesBeanName) {
		this.propertiesBeanName = propertiesBeanName;
	}

	public Properties getProperties() {
		return properties;
	}

	public void setProperties(Properties properties) {
		this.properties = properties;
	}

	public List getActiveProfiles() {
		return activeProfiles;
	}

	public void setActiveProfiles(List activeProfiles) {
		this.activeProfiles = activeProfiles;
	}

	public List getDefaultProfiles() {
		return defaultProfiles;
	}

	public void setDefaultProfiles(List defaultProfiles) {
		this.defaultProfiles = defaultProfiles;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy