org.springframework.contributions.ordered.OrderedContributionBeenContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-contributions Show documentation
Show all versions of spring-contributions Show documentation
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.
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