org.springframework.aop.IntroductionInfo Java Examples
The following examples show how to use
org.springframework.aop.IntroductionInfo.
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 |
/** * Cannot add introductions this way unless the advice implements IntroductionInfo. */ @Override public void addAdvice(int pos, Advice advice) throws AopConfigException { Assert.notNull(advice, "Advice must not be null"); if (advice instanceof IntroductionInfo) { // We don't need an IntroductionAdvisor for this kind of introduction: // It's fully self-describing. addAdvisor(pos, new DefaultIntroductionAdvisor(advice, (IntroductionInfo) advice)); } else if (advice instanceof DynamicIntroductionAdvice) { // We need an IntroductionAdvisor for this kind of introduction. throw new AopConfigException("DynamicIntroductionAdvice may only be added as part of IntroductionAdvisor"); } else { addAdvisor(pos, new DefaultPointcutAdvisor(advice)); } }
Example #2
Source File: AdvisedSupport.java From java-technology-stack with MIT License | 6 votes |
/** * Cannot add introductions this way unless the advice implements IntroductionInfo. */ @Override public void addAdvice(int pos, Advice advice) throws AopConfigException { Assert.notNull(advice, "Advice must not be null"); if (advice instanceof IntroductionInfo) { // We don't need an IntroductionAdvisor for this kind of introduction: // It's fully self-describing. addAdvisor(pos, new DefaultIntroductionAdvisor(advice, (IntroductionInfo) advice)); } else if (advice instanceof DynamicIntroductionAdvice) { // We need an IntroductionAdvisor for this kind of introduction. throw new AopConfigException("DynamicIntroductionAdvice may only be added as part of IntroductionAdvisor"); } else { addAdvisor(pos, new DefaultPointcutAdvisor(advice)); } }
Example #3
Source File: AdvisedSupport.java From lams with GNU General Public License v2.0 | 6 votes |
/** * Cannot add introductions this way unless the advice implements IntroductionInfo. */ @Override public void addAdvice(int pos, Advice advice) throws AopConfigException { Assert.notNull(advice, "Advice must not be null"); if (advice instanceof IntroductionInfo) { // We don't need an IntroductionAdvisor for this kind of introduction: // It's fully self-describing. addAdvisor(pos, new DefaultIntroductionAdvisor(advice, (IntroductionInfo) advice)); } else if (advice instanceof DynamicIntroductionAdvice) { // We need an IntroductionAdvisor for this kind of introduction. throw new AopConfigException("DynamicIntroductionAdvice may only be added as part of IntroductionAdvisor"); } else { addAdvisor(pos, new DefaultPointcutAdvisor(advice)); } }
Example #4
Source File: AdvisedSupport.java From spring4-understanding with Apache License 2.0 | 6 votes |
/** * Cannot add introductions this way unless the advice implements IntroductionInfo. */ @Override public void addAdvice(int pos, Advice advice) throws AopConfigException { Assert.notNull(advice, "Advice must not be null"); if (advice instanceof IntroductionInfo) { // We don't need an IntroductionAdvisor for this kind of introduction: // It's fully self-describing. addAdvisor(pos, new DefaultIntroductionAdvisor(advice, (IntroductionInfo) advice)); } else if (advice instanceof DynamicIntroductionAdvice) { // We need an IntroductionAdvisor for this kind of introduction. throw new AopConfigException("DynamicIntroductionAdvice may only be added as part of IntroductionAdvisor"); } else { addAdvisor(pos, new DefaultPointcutAdvisor(advice)); } }
Example #5
Source File: DefaultIntroductionAdvisor.java From spring-analysis-note with MIT License | 5 votes |
/** * 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 #6
Source File: DefaultIntroductionAdvisor.java From java-technology-stack with MIT License | 5 votes |
/** * 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 #7
Source File: DefaultIntroductionAdvisor.java From lams with GNU General Public License v2.0 | 5 votes |
/** * 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 #8
Source File: DefaultIntroductionAdvisor.java From spring4-understanding with Apache License 2.0 | 5 votes |
/** * 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 #9
Source File: DefaultIntroductionAdvisor.java From spring-analysis-note with MIT License | 2 votes |
/** * Create a DefaultIntroductionAdvisor for the given advice. * @param advice the Advice to apply (may implement the * {@link org.springframework.aop.IntroductionInfo} interface) * @see #addInterface */ public DefaultIntroductionAdvisor(Advice advice) { this(advice, (advice instanceof IntroductionInfo ? (IntroductionInfo) advice : null)); }
Example #10
Source File: DefaultIntroductionAdvisor.java From java-technology-stack with MIT License | 2 votes |
/** * Create a DefaultIntroductionAdvisor for the given advice. * @param advice the Advice to apply (may implement the * {@link org.springframework.aop.IntroductionInfo} interface) * @see #addInterface */ public DefaultIntroductionAdvisor(Advice advice) { this(advice, (advice instanceof IntroductionInfo ? (IntroductionInfo) advice : null)); }
Example #11
Source File: DefaultIntroductionAdvisor.java From lams with GNU General Public License v2.0 | 2 votes |
/** * Create a DefaultIntroductionAdvisor for the given advice. * @param advice the Advice to apply (may implement the * {@link org.springframework.aop.IntroductionInfo} interface) * @see #addInterface */ public DefaultIntroductionAdvisor(Advice advice) { this(advice, (advice instanceof IntroductionInfo ? (IntroductionInfo) advice : null)); }
Example #12
Source File: DefaultIntroductionAdvisor.java From spring4-understanding with Apache License 2.0 | 2 votes |
/** * Create a DefaultIntroductionAdvisor for the given advice. * @param advice the Advice to apply (may implement the * {@link org.springframework.aop.IntroductionInfo} interface) * @see #addInterface */ public DefaultIntroductionAdvisor(Advice advice) { this(advice, (advice instanceof IntroductionInfo ? (IntroductionInfo) advice : null)); }