1 18 package org.apache.activemq.broker.region; 19 20 25 public class CompositeDestinationInterceptor implements DestinationInterceptor { 26 27 private final DestinationInterceptor[] interceptors; 28 29 public CompositeDestinationInterceptor(final DestinationInterceptor[] interceptors) { 30 this.interceptors = interceptors; 31 } 32 33 public Destination intercept(Destination destination) { 34 for (int i = 0; i < interceptors.length; i++) { 35 destination = interceptors[i].intercept(destination); 36 } 37 return destination; 38 } 39 40 } 41 | Popular Tags |