001 /*
002 * Created on Nov 7, 2004
003 *
004 * TODO To change the template for this generated file go to
005 * Window - Preferences - Java - Code Style - Code Templates
006 */
007 package org.activemq.security.jassjacc;
008
009 import java.util.HashSet;
010
011 /**
012 * @author Hiram
013 *
014 * TODO To change the template for this generated type comment go to
015 * Window - Preferences - Java - Code Style - Code Templates
016 */
017 public class BrokerSecurityConfig {
018
019 String brokerName;
020 HashSet connectRoles = new HashSet();
021
022 /**
023 * @return Returns the brokerName.
024 */
025 public String getBrokerName() {
026 return brokerName;
027 }
028 /**
029 * @param brokerName The brokerName to set.
030 */
031 public void setBrokerName(String brokerName) {
032 this.brokerName = brokerName;
033 }
034 /**
035 * @return Returns the connectRoles.
036 */
037 public HashSet getConnectRoles() {
038 return connectRoles;
039 }
040 /**
041 * @param connectRoles The connectRoles to set.
042 */
043 public void setConnectRoles(HashSet connectRoles) {
044 this.connectRoles = connectRoles;
045 }
046 }