This closes #71 javadoc changes

This commit is contained in:
Clebert Suconic 2015-07-09 23:55:34 -04:00
commit 970623f52b
2 changed files with 0 additions and 25 deletions

View File

@ -208,9 +208,6 @@ public class BrokerService implements Service
// Properties
// -------------------------------------------------------------------------
/**
* Returns the message broker
*/
public Broker getBroker() throws Exception
{
if (broker == null)
@ -225,11 +222,6 @@ public class BrokerService implements Service
return brokerName;
}
/**
* Sets the name of this broker; which must be unique in the network
*
* @param brokerName
*/
public void setBrokerName(String brokerName)
{
if (brokerName == null)
@ -244,11 +236,6 @@ public class BrokerService implements Service
this.brokerName = str.trim();
}
/**
* Factory method to create a new broker
*
* @throws Exception
*/
protected Broker createBroker() throws Exception
{
broker = createBrokerWrapper();

View File

@ -23,13 +23,6 @@ import org.apache.activemq.command.ActiveMQDestination;
import org.apache.activemq.filter.DestinationMap;
import org.apache.activemq.filter.DestinationMapEntry;
/**
* Represents a destination based configuration of policies so that individual
* destinations or wildcard hierarchies of destinations can be configured using
* different policies.
*
* @org.apache.xbean.XBean
*/
public class PolicyMap extends DestinationMap
{
@ -46,11 +39,6 @@ public class PolicyMap extends DestinationMap
return answer;
}
/**
* Sets the individual entries on the policy map
*
* @org.apache.xbean.ElementType class="org.apache.activemq.broker.region.policy.PolicyEntry"
*/
public void setPolicyEntries(List entries)
{
super.setEntries(entries);