1 18 19 package org.apache.activemq.filter; 20 21 import org.apache.activemq.command.ActiveMQDestination; 22 23 24 29 public class SimpleDestinationFilter extends DestinationFilter { 30 31 private ActiveMQDestination destination; 32 33 public SimpleDestinationFilter(ActiveMQDestination destination) { 34 this.destination = destination; 35 } 36 37 public boolean matches(ActiveMQDestination destination) { 38 return this.destination.equals(destination); 39 } 40 41 public boolean isWildcard() { 42 return false; 43 } 44 } 45 | Popular Tags |