1 17 package org.apache.activemq.broker.view; 18 19 import org.apache.activemq.broker.Broker; 20 import org.apache.activemq.broker.BrokerPlugin; 21 22 30 public class DestinationDotFilePlugin implements BrokerPlugin { 31 private String file = "ActiveMQDestinations.dot"; 32 33 public Broker installPlugin(Broker broker) { 34 return new DestinationDotFileInterceptor(broker, file); 35 } 36 37 public String getFile() { 38 return file; 39 } 40 41 44 public void setFile(String file) { 45 this.file = file; 46 } 47 48 49 } 50 | Popular Tags |