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 ConnectionDotFilePlugin implements BrokerPlugin { 31 private String file = "ActiveMQConnections.dot"; 32 private boolean redrawOnRemove; 33 34 public Broker installPlugin(Broker broker) throws Exception { 35 return new ConnectionDotFileInterceptor(broker, file, redrawOnRemove); 36 } 37 38 public String getFile() { 39 return file; 40 } 41 42 45 public void setFile(String file) { 46 this.file = file; 47 } 48 49 } 50 | Popular Tags |