[jboss-cvs] JBoss Messaging SVN: r5487 - trunk/src/main/org/jboss/messaging/jms/server/management.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Dec 9 09:11:33 EST 2008
Author: jmesnil
Date: 2008-12-09 09:11:33 -0500 (Tue, 09 Dec 2008)
New Revision: 5487
Modified:
trunk/src/main/org/jboss/messaging/jms/server/management/JMSServerControlMBean.java
Log:
fixed formatting
Modified: trunk/src/main/org/jboss/messaging/jms/server/management/JMSServerControlMBean.java
===================================================================
--- trunk/src/main/org/jboss/messaging/jms/server/management/JMSServerControlMBean.java 2008-12-09 13:28:48 UTC (rev 5486)
+++ trunk/src/main/org/jboss/messaging/jms/server/management/JMSServerControlMBean.java 2008-12-09 14:11:33 UTC (rev 5487)
@@ -50,25 +50,25 @@
@Operation(desc = "Create a JMS Queue", impact = ACTION)
boolean createQueue(@Parameter(name = "name", desc = "Name of the queue to create")
- String name, @Parameter(name = "jndiBinding", desc = "the name of the binding for JNDI")
- String jndiBinding) throws Exception;
+ String name,
+ @Parameter(name = "jndiBinding", desc = "the name of the binding for JNDI")
+ String jndiBinding) throws Exception;
@Operation(desc = "Destroy a JMS Queue", impact = ACTION)
boolean destroyQueue(@Parameter(name = "name", desc = "Name of the queue to destroy")
- String name) throws Exception;
+ String name) throws Exception;
@Operation(desc = "Create a JMS Topic", impact = ACTION)
boolean createTopic(@Parameter(name = "name", desc = "Name of the topic to create")
- String name, @Parameter(name = "jndiBinding", desc = "the name of the binding for JNDI")
- String jndiBinding) throws Exception;
+ String name,
+ @Parameter(name = "jndiBinding", desc = "the name of the binding for JNDI")
+ String jndiBinding) throws Exception;
@Operation(desc = "Destroy a JMS Topic", impact = ACTION)
- boolean destroyTopic(@Parameter(name = "name", desc = "Name of the topic to destroy")
- String name) throws Exception;
+ boolean destroyTopic(@Parameter(name = "name", desc = "Name of the topic to destroy") String name) throws Exception;
-
@Operation(desc = "Create a JMS ConnectionFactory with a static list of servers", impact = ACTION)
- void createConnectionFactory(@Parameter(name = "name", desc = "Name of the ConnectionFactory to create")
+ void createConnectionFactory(@Parameter(name = "name", desc = "Name of the ConnectionFactory to create")
String name,
@Parameter(name = "connectorConfigs", desc = "List of pairs of live configuration, backup configuration")
List<Pair<TransportConfiguration, TransportConfiguration>> connectorConfigs,
@@ -84,114 +84,114 @@
String clientID,
@Parameter(name = "dupsOKBatchSize", desc = "Size of the batch in bytes when using DUPS_OK")
int dupsOKBatchSize,
- @Parameter(name = "transactionBatchSize", desc = "Size of the batch in bytes when using transacted session")
+ @Parameter(name = "transactionBatchSize", desc = "Size of the batch in bytes when using transacted session")
int transactionBatchSize,
- @Parameter(name = "consumerWindowSize", desc = "Consumer's window size")
+ @Parameter(name = "consumerWindowSize", desc = "Consumer's window size")
int consumerWindowSize,
- @Parameter(name = "consumerMaxRate", desc = "Consumer's max rate")
+ @Parameter(name = "consumerMaxRate", desc = "Consumer's max rate")
int consumerMaxRate,
@Parameter(name = "producerWindowSize", desc = "Producer's window size")
int producerWindowSize,
- @Parameter(name = "producerMaxRate", desc = "Producer's max rate")
+ @Parameter(name = "producerMaxRate", desc = "Producer's max rate")
int producerMaxRate,
- @Parameter(name = "minLargeMessageSize", desc = "Size of what is considered a big message requiring sending in chunks")
- int minLargeMessageSize,
- @Parameter(name = "blockOnAcknowledge", desc = "Does acknowlegment block?")
+ @Parameter(name = "minLargeMessageSize", desc = "Size of what is considered a big message requiring sending in chunks") int minLargeMessageSize,
+ @Parameter(name = "blockOnAcknowledge", desc = "Does acknowlegment block?")
boolean blockOnAcknowledge,
- @Parameter(name = "blockOnNonPersistentSend", desc = "Does sending non persistent messages block?")
+ @Parameter(name = "blockOnNonPersistentSend", desc = "Does sending non persistent messages block?")
boolean blockOnNonPersistentSend,
- @Parameter(name = "blockOnPersistentSend", desc = "Does sending persistent messages block?")
+ @Parameter(name = "blockOnPersistentSend", desc = "Does sending persistent messages block?")
boolean blockOnPersistentSend,
- @Parameter(name = "autoGroup", desc = "Any Messages sent via this factories connections will automatically set the property 'JBM_GroupID'")
+ @Parameter(name = "autoGroup", desc = "Any Messages sent via this factories connections will automatically set the property 'JBM_GroupID'")
boolean autoGroup,
- @Parameter(name = "maxConnections", desc = "The maximum number of physical connections created per client using this connection factory. Sessions created will be assigned a connection in a round-robin fashion")
+ @Parameter(name = "maxConnections", desc = "The maximum number of physical connections created per client using this connection factory. Sessions created will be assigned a connection in a round-robin fashion")
int maxConnections,
- @Parameter(name = "preAcknowledge", desc = "If the server will acknowledge delivery of a message before it is delivered")
- boolean preAcknowledge,
+ @Parameter(name = "preAcknowledge", desc = "If the server will acknowledge delivery of a message before it is delivered")
+ boolean preAcknowledge,
@Parameter(name = "retryInterval", desc = "The retry interval in ms when retrying connecting to same server")
- long retryInterval,
- @Parameter(name = "retryIntervalMultiplier", desc = "The retry interval multiplier when retrying connecting to same server")
- double retryIntervalMultiplier,
- @Parameter(name = "maxRetriesBeforeFailover", desc = "The maximum number of connection attempts to a server before failover. -1 means no maximum")
+ long retryInterval,
+ @Parameter(name = "retryIntervalMultiplier", desc = "The retry interval multiplier when retrying connecting to same server")
+ double retryIntervalMultiplier,
+ @Parameter(name = "maxRetriesBeforeFailover", desc = "The maximum number of connection attempts to a server before failover. -1 means no maximum")
int maxRetriesBeforeFailover,
@Parameter(name = "maxRetriesAfterFailover", desc = "The maximum number of connection attempts to a server after failover. -1 means no maximum")
- int maxRetriesAfterFailover,
- @Parameter(name = "jndiBinding", desc = "JNDI Binding")
- String jndiBinding) throws Exception;
-
+ int maxRetriesAfterFailover,
+ @Parameter(name = "jndiBinding", desc = "JNDI Binding")
+ String jndiBinding)
+ throws Exception;
+
@Operation(desc = "Create a JMS ConnectionFactory specifying a discovery group to obtain list of servers from", impact = ACTION)
- void createConnectionFactory(@Parameter(name = "name", desc = "Name of the ConnectionFactory to create")
+ void createConnectionFactory(@Parameter(name = "name", desc = "Name of the ConnectionFactory to create")
String name,
@Parameter(name = "discoveryGroupName", desc = "Name of the Discovery group configuration")
- String discoveryGroupName,
- @Parameter(name = "discoveryGroupAddress", desc = "Address of the Discovery group")
+ String discoveryGroupName,
+ @Parameter(name = "discoveryGroupAddress", desc = "Address of the Discovery group")
String discoveryGroupAddress,
@Parameter(name = "discoveryGroupPort", desc = "port of the Discovery group")
int discoveryGroupPort,
- @Parameter(name = "discoveryGroupRefreshTimeout", desc = "Refresh timeout of the discovery group")
+ @Parameter(name = "discoveryGroupRefreshTimeout", desc = "Refresh timeout of the discovery group")
long discoveryGroupRefreshTimeout,
- @Parameter(name = "discoveryInitialWait", desc = "The amount of time in ms to wait for initial discovery information to arrive at first using connection factory")
+ @Parameter(name = "discoveryInitialWait", desc = "The amount of time in ms to wait for initial discovery information to arrive at first using connection factory")
long discoveryInitialWait,
@Parameter(name = "connectionLoadBalancingPolicyClassName", desc = "The name of the class to use for client side connection load-balancing")
String connectionLoadBalancingPolicyClassName,
- @Parameter(name = "pingPeriod", desc = "The ping period in m")
+ @Parameter(name = "pingPeriod", desc = "The ping period in m")
long pingPeriod,
- @Parameter(name = "connectionTTL", desc = "The connection TTL in ms")
+ @Parameter(name = "connectionTTL", desc = "The connection TTL in ms")
long connectionTTL,
- @Parameter(name = "callTimeout", desc = "The call timeout in m")
+ @Parameter(name = "callTimeout", desc = "The call timeout in m")
long callTimeout,
- @Parameter(name = "clientID", desc = "ClientID for created connections")
+ @Parameter(name = "clientID", desc = "ClientID for created connections")
String clientID,
- @Parameter(name = "dupsOKBatchSize", desc = "Size of the batch in bytes when using DUPS_OK")
+ @Parameter(name = "dupsOKBatchSize", desc = "Size of the batch in bytes when using DUPS_OK")
int dupsOKBatchSize,
- @Parameter(name = "transactionBatchSize", desc = "Size of the batch in bytes when using transacted session")
+ @Parameter(name = "transactionBatchSize", desc = "Size of the batch in bytes when using transacted session")
int transactionBatchSize,
- @Parameter(name = "consumerWindowSize", desc = "Consumer's window size")
+ @Parameter(name = "consumerWindowSize", desc = "Consumer's window size")
int consumerWindowSize,
- @Parameter(name = "consumerMaxRate", desc = "Consumer's max rate")
+ @Parameter(name = "consumerMaxRate", desc = "Consumer's max rate")
int consumerMaxRate,
- @Parameter(name = "producerWindowSize", desc = "Producer's window size")
+ @Parameter(name = "producerWindowSize", desc = "Producer's window size")
int producerWindowSize,
@Parameter(name = "producerMaxRate", desc = "Producer's max rate")
int producerMaxRate,
@Parameter(name = "minLargeMessageSize", desc = "Size of what is considered a big message requiring sending in chunks")
- int minLargeMessageSize,
- @Parameter(name = "blockOnAcknowledge", desc = "Does acknowlegment block?")
+ int minLargeMessageSize,
+ @Parameter(name = "blockOnAcknowledge", desc = "Does acknowlegment block?")
boolean blockOnAcknowledge,
- @Parameter(name = "blockOnNonPersistentSend", desc = "Does sending non persistent messages block?")
+ @Parameter(name = "blockOnNonPersistentSend", desc = "Does sending non persistent messages block?")
boolean blockOnNonPersistentSend,
@Parameter(name = "blockOnPersistentSend", desc = "Does sending persistent messages block?")
boolean blockOnPersistentSend,
@Parameter(name = "autoGroup", desc = "Any Messages sent via this factories connections will automatically set the property 'JBM_GroupID'")
boolean autoGroup,
- @Parameter(name = "maxConnections", desc = "The maximum number of physical connections created per client using this connection factory. Sessions created will be assigned a connection in a round-robin fashion")
+ @Parameter(name = "maxConnections", desc = "The maximum number of physical connections created per client using this connection factory. Sessions created will be assigned a connection in a round-robin fashion")
int maxConnections,
- @Parameter(name = "preAcknowledge", desc = "If the server will acknowledge delivery of a message before it is delivered")
- boolean preAcknowledge,
- @Parameter(name = "retryInterval", desc = "The retry interval in ms when retrying connecting to same server")
- long retryInterval,
- @Parameter(name = "retryIntervalMultiplier", desc = "The retry interval multiplier when retrying connecting to same server")
- double retryIntervalMultiplier,
+ @Parameter(name = "preAcknowledge", desc = "If the server will acknowledge delivery of a message before it is delivered")
+ boolean preAcknowledge,
+ @Parameter(name = "retryInterval", desc = "The retry interval in ms when retrying connecting to same server")
+ long retryInterval,
+ @Parameter(name = "retryIntervalMultiplier", desc = "The retry interval multiplier when retrying connecting to same server")
+ double retryIntervalMultiplier,
@Parameter(name = "maxRetriesBeforeFailover", desc = "The maximum number of connection attempts to a server before failover. -1 means no maximum")
int maxRetriesBeforeFailover,
- @Parameter(name = "maxRetriesAfterFailover", desc = "The maximum number of connection attempts to a server after failover. -1 means no maximum")
- int maxRetriesAfterFailover,
- @Parameter(name = "jndiBinding", desc = "JNDI Binding")
- String jndiBinding) throws Exception;
+ @Parameter(name = "maxRetriesAfterFailover", desc = "The maximum number of connection attempts to a server after failover. -1 means no maximum")
+ int maxRetriesAfterFailover,
+ @Parameter(name = "jndiBinding", desc = "JNDI Binding")
+ String jndiBinding)
+ throws Exception;
@Operation(desc = "Create a JMS ConnectionFactory", impact = ACTION)
- void destroyConnectionFactory(@Parameter(name = "name", desc = "Name of the ConnectionFactory to create")
- String name) throws Exception;
-
+ void destroyConnectionFactory(@Parameter(name = "name", desc = "Name of the ConnectionFactory to create") String name) throws Exception;
+
@Operation(desc = "List the client addresses", impact = INFO)
String[] listRemoteAddresses();
-
+
@Operation(desc = "List the client addresses which match the given IP Address", impact = INFO)
String[] listRemoteAddresses(@Parameter(desc = "an IP address", name = "ipAddress") String ipAddress);
@Operation(desc = "Closes all the connections for the given IP Address", impact = INFO)
boolean closeConnectionsForAddress(@Parameter(desc = "an IP address", name = "ipAddress") String ipAddress) throws Exception;
-
+
@Operation(desc = "List all the connection IDs", impact = INFO)
String[] listConnectionIDs();
More information about the jboss-cvs-commits
mailing list