Java Code Examples for org.springframework.aop.IntroductionInfo#getInterfaces()

The following examples show how to use org.springframework.aop.IntroductionInfo#getInterfaces() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DefaultIntroductionAdvisor.java    From spring-analysis-note with MIT License 5 votes vote down vote up
/**
 * Create a DefaultIntroductionAdvisor for the given advice.
 * @param advice the Advice to apply
 * @param introductionInfo the IntroductionInfo that describes
 * the interface to introduce (may be {@code null})
 */
public DefaultIntroductionAdvisor(Advice advice, @Nullable IntroductionInfo introductionInfo) {
	Assert.notNull(advice, "Advice must not be null");
	this.advice = advice;
	if (introductionInfo != null) {
		Class<?>[] introducedInterfaces = introductionInfo.getInterfaces();
		if (introducedInterfaces.length == 0) {
			throw new IllegalArgumentException("IntroductionAdviceSupport implements no interfaces");
		}
		for (Class<?> ifc : introducedInterfaces) {
			addInterface(ifc);
		}
	}
}
 
Example 2
Source File: DefaultIntroductionAdvisor.java    From java-technology-stack with MIT License 5 votes vote down vote up
/**
 * Create a DefaultIntroductionAdvisor for the given advice.
 * @param advice the Advice to apply
 * @param introductionInfo the IntroductionInfo that describes
 * the interface to introduce (may be {@code null})
 */
public DefaultIntroductionAdvisor(Advice advice, @Nullable IntroductionInfo introductionInfo) {
	Assert.notNull(advice, "Advice must not be null");
	this.advice = advice;
	if (introductionInfo != null) {
		Class<?>[] introducedInterfaces = introductionInfo.getInterfaces();
		if (introducedInterfaces.length == 0) {
			throw new IllegalArgumentException("IntroductionAdviceSupport implements no interfaces");
		}
		for (Class<?> ifc : introducedInterfaces) {
			addInterface(ifc);
		}
	}
}
 
Example 3
Source File: DefaultIntroductionAdvisor.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Create a DefaultIntroductionAdvisor for the given advice.
 * @param advice the Advice to apply
 * @param introductionInfo the IntroductionInfo that describes
 * the interface to introduce (may be {@code null})
 */
public DefaultIntroductionAdvisor(Advice advice, IntroductionInfo introductionInfo) {
	Assert.notNull(advice, "Advice must not be null");
	this.advice = advice;
	if (introductionInfo != null) {
		Class<?>[] introducedInterfaces = introductionInfo.getInterfaces();
		if (introducedInterfaces.length == 0) {
			throw new IllegalArgumentException("IntroductionAdviceSupport implements no interfaces");
		}
		for (Class<?> ifc : introducedInterfaces) {
			addInterface(ifc);
		}
	}
}
 
Example 4
Source File: DefaultIntroductionAdvisor.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
/**
 * Create a DefaultIntroductionAdvisor for the given advice.
 * @param advice the Advice to apply
 * @param introductionInfo the IntroductionInfo that describes
 * the interface to introduce (may be {@code null})
 */
public DefaultIntroductionAdvisor(Advice advice, IntroductionInfo introductionInfo) {
	Assert.notNull(advice, "Advice must not be null");
	this.advice = advice;
	if (introductionInfo != null) {
		Class<?>[] introducedInterfaces = introductionInfo.getInterfaces();
		if (introducedInterfaces.length == 0) {
			throw new IllegalArgumentException("IntroductionAdviceSupport implements no interfaces");
		}
		for (Class<?> ifc : introducedInterfaces) {
			addInterface(ifc);
		}
	}
}