1 18 package org.apache.activemq.console.filter; 19 20 import java.util.List ; 21 22 public class StubQueryFilter implements QueryFilter{ 23 private List data; 24 25 29 public StubQueryFilter(List data) { 30 this.data = data; 31 } 32 33 39 public List query(String queryStr) throws Exception { 40 return data; 41 } 42 43 49 public List query(List queries) throws Exception { 50 return data; 51 } 52 } 53 | Popular Tags |