|
| 1 | +package de.rieckpil.blog; |
| 2 | + |
| 3 | +import javax.annotation.PostConstruct; |
| 4 | +import javax.annotation.PreDestroy; |
| 5 | +import javax.inject.Inject; |
| 6 | +import javax.interceptor.AroundConstruct; |
| 7 | +import javax.interceptor.AroundInvoke; |
| 8 | +import javax.interceptor.Interceptor; |
| 9 | +import javax.interceptor.InvocationContext; |
| 10 | +import java.math.BigDecimal; |
| 11 | +import java.math.RoundingMode; |
| 12 | + |
| 13 | +@Interceptor |
| 14 | +@ManipulatedPayment |
| 15 | +public class PaymentManipulationInterceptor { |
| 16 | + |
| 17 | + @Inject |
| 18 | + private PaymentManipulator paymentManipulator; |
| 19 | + |
| 20 | + @AroundInvoke |
| 21 | + public Object manipulatePayment(InvocationContext invocationContext) throws Exception { |
| 22 | + |
| 23 | + if (invocationContext.getParameters()[0] instanceof String) { |
| 24 | + if (((String) invocationContext.getParameters()[0]).equalsIgnoreCase("duke")) { |
| 25 | + paymentManipulator.manipulatePayment(); |
| 26 | + invocationContext.setParameters(new Object[]{ |
| 27 | + "Duke", new BigDecimal(999.99).setScale(2, RoundingMode.HALF_UP) |
| 28 | + }); |
| 29 | + } |
| 30 | + } |
| 31 | + |
| 32 | + return invocationContext.proceed(); |
| 33 | + } |
| 34 | + |
| 35 | + @AroundConstruct |
| 36 | + public void aroundConstructInterception(InvocationContext invocationContext) throws Exception { |
| 37 | + System.out.println(invocationContext.getConstructor().getDeclaringClass() + " will be manipulated"); |
| 38 | + invocationContext.proceed(); |
| 39 | + } |
| 40 | + |
| 41 | + @PostConstruct |
| 42 | + public void postConstructInterception(InvocationContext invocationContext) throws Exception { |
| 43 | + System.out.println(invocationContext.getMethod().getDeclaringClass() + " is ready for manipulation"); |
| 44 | + invocationContext.proceed(); |
| 45 | + } |
| 46 | + |
| 47 | + @PreDestroy |
| 48 | + public void preDestroyInterception(InvocationContext invocationContext) throws Exception { |
| 49 | + System.out.println("Stopped manipulating of class " + invocationContext.getMethod().getDeclaringClass()); |
| 50 | + invocationContext.proceed(); |
| 51 | + } |
| 52 | +} |
0 commit comments