1 18 package org.apache.activemq.network.jms; 19 20 21 28 public class InboundQueueBridge extends QueueBridge{ 29 30 String inboundQueueName; 31 String localQueueName; 32 36 public InboundQueueBridge(String inboundQueueName){ 37 this.inboundQueueName = inboundQueueName; 38 this.localQueueName = inboundQueueName; 39 } 40 41 44 public InboundQueueBridge(){ 45 } 46 47 50 public String getInboundQueueName(){ 51 return inboundQueueName; 52 } 53 54 57 public void setInboundQueueName(String inboundQueueName){ 58 this.inboundQueueName=inboundQueueName; 59 if (this.localQueueName == null){ 60 this.localQueueName = inboundQueueName; 61 } 62 } 63 64 67 public String getLocalQueueName(){ 68 return localQueueName; 69 } 70 71 74 public void setLocalQueueName(String localQueueName){ 75 this.localQueueName=localQueueName; 76 } 77 78 } 79 | Popular Tags |