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

The following examples show how to use org.springframework.aop.IntroductionAdvisor#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: AdvisedSupport.java    From spring-analysis-note with MIT License 6 votes vote down vote up
@Override
public void removeAdvisor(int index) throws AopConfigException {
	if (isFrozen()) {
		throw new AopConfigException("Cannot remove Advisor: Configuration is frozen.");
	}
	if (index < 0 || index > this.advisors.size() - 1) {
		throw new AopConfigException("Advisor index " + index + " is out of bounds: " +
				"This configuration only has " + this.advisors.size() + " advisors.");
	}

	Advisor advisor = this.advisors.get(index);
	if (advisor instanceof IntroductionAdvisor) {
		IntroductionAdvisor ia = (IntroductionAdvisor) advisor;
		// We need to remove introduction interfaces.
		for (int j = 0; j < ia.getInterfaces().length; j++) {
			removeInterface(ia.getInterfaces()[j]);
		}
	}

	this.advisors.remove(index);
	updateAdvisorArray();
	adviceChanged();
}
 
Example 2
Source File: AdvisedSupport.java    From java-technology-stack with MIT License 6 votes vote down vote up
@Override
public void removeAdvisor(int index) throws AopConfigException {
	if (isFrozen()) {
		throw new AopConfigException("Cannot remove Advisor: Configuration is frozen.");
	}
	if (index < 0 || index > this.advisors.size() - 1) {
		throw new AopConfigException("Advisor index " + index + " is out of bounds: " +
				"This configuration only has " + this.advisors.size() + " advisors.");
	}

	Advisor advisor = this.advisors.get(index);
	if (advisor instanceof IntroductionAdvisor) {
		IntroductionAdvisor ia = (IntroductionAdvisor) advisor;
		// We need to remove introduction interfaces.
		for (int j = 0; j < ia.getInterfaces().length; j++) {
			removeInterface(ia.getInterfaces()[j]);
		}
	}

	this.advisors.remove(index);
	updateAdvisorArray();
	adviceChanged();
}
 
Example 3
Source File: AdvisedSupport.java    From lams with GNU General Public License v2.0 6 votes vote down vote up
@Override
public void removeAdvisor(int index) throws AopConfigException {
	if (isFrozen()) {
		throw new AopConfigException("Cannot remove Advisor: Configuration is frozen.");
	}
	if (index < 0 || index > this.advisors.size() - 1) {
		throw new AopConfigException("Advisor index " + index + " is out of bounds: " +
				"This configuration only has " + this.advisors.size() + " advisors.");
	}

	Advisor advisor = this.advisors.get(index);
	if (advisor instanceof IntroductionAdvisor) {
		IntroductionAdvisor ia = (IntroductionAdvisor) advisor;
		// We need to remove introduction interfaces.
		for (int j = 0; j < ia.getInterfaces().length; j++) {
			removeInterface(ia.getInterfaces()[j]);
		}
	}

	this.advisors.remove(index);
	updateAdvisorArray();
	adviceChanged();
}
 
Example 4
Source File: AdvisedSupport.java    From spring4-understanding with Apache License 2.0 6 votes vote down vote up
@Override
public void removeAdvisor(int index) throws AopConfigException {
	if (isFrozen()) {
		throw new AopConfigException("Cannot remove Advisor: Configuration is frozen.");
	}
	if (index < 0 || index > this.advisors.size() - 1) {
		throw new AopConfigException("Advisor index " + index + " is out of bounds: " +
				"This configuration only has " + this.advisors.size() + " advisors.");
	}

	Advisor advisor = this.advisors.get(index);
	if (advisor instanceof IntroductionAdvisor) {
		IntroductionAdvisor ia = (IntroductionAdvisor) advisor;
		// We need to remove introduction interfaces.
		for (int j = 0; j < ia.getInterfaces().length; j++) {
			removeInterface(ia.getInterfaces()[j]);
		}
	}

	this.advisors.remove(index);
	updateAdvisorArray();
	adviceChanged();
}
 
Example 5
Source File: AdvisedSupport.java    From spring-analysis-note with MIT License 5 votes vote down vote up
private void validateIntroductionAdvisor(IntroductionAdvisor advisor) {
	advisor.validateInterfaces();
	// If the advisor passed validation, we can make the change.
	Class<?>[] ifcs = advisor.getInterfaces();
	for (Class<?> ifc : ifcs) {
		addInterface(ifc);
	}
}
 
Example 6
Source File: AdvisedSupport.java    From java-technology-stack with MIT License 5 votes vote down vote up
private void validateIntroductionAdvisor(IntroductionAdvisor advisor) {
	advisor.validateInterfaces();
	// If the advisor passed validation, we can make the change.
	Class<?>[] ifcs = advisor.getInterfaces();
	for (Class<?> ifc : ifcs) {
		addInterface(ifc);
	}
}
 
Example 7
Source File: AdvisedSupport.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
private void validateIntroductionAdvisor(IntroductionAdvisor advisor) {
	advisor.validateInterfaces();
	// If the advisor passed validation, we can make the change.
	Class<?>[] ifcs = advisor.getInterfaces();
	for (Class<?> ifc : ifcs) {
		addInterface(ifc);
	}
}
 
Example 8
Source File: AdvisedSupport.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
private void validateIntroductionAdvisor(IntroductionAdvisor advisor) {
	advisor.validateInterfaces();
	// If the advisor passed validation, we can make the change.
	Class<?>[] ifcs = advisor.getInterfaces();
	for (Class<?> ifc : ifcs) {
		addInterface(ifc);
	}
}