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

org.springframework.contributions.ordered.OrderedContributionBeenContext Maven / Gradle / Ivy

Go to download

This project adds a so called contribution mechanism (like known from Tapestry IOC or Eclipse Plugins) for configuration and extension of services to the Spring project.

There is a newer version: 2.0.0
Show newest version
package org.springframework.contributions.ordered;

public class OrderedContributionBeenContext
{
	final String beanName;
	final Object beanValueOrReference;
	final String constraints;
    
	public OrderedContributionBeenContext(String beanName, Object beanValueOrReference,
        String constraints)
	{
		this.beanName = beanName;
		this.beanValueOrReference = beanValueOrReference;
		this.constraints = constraints;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy