re-added name on the network connector

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@523259 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2007-03-28 10:17:44 +00:00
parent 735dc7a230
commit 2ef81512d6

View File

@ -33,6 +33,7 @@ public class NetworkBridgeConfiguration{
private String userName;
private String password;
private String destinationFilter = ">";
private String name = "localhost";
/**
* @return the conduitSubscriptions
@ -221,4 +222,18 @@ public class NetworkBridgeConfiguration{
public void setDestinationFilter(String destinationFilter){
this.destinationFilter=destinationFilter;
}
/**
* @return the name
*/
public String getName(){
return this.name;
}
/**
* @param name the name to set
*/
public void setName(String name){
this.name=name;
}
}