ARTEMIS-1939 Remove space from parameter annotations name in ActiveMQServerControl
This commit is contained in:
parent
47ba1f051b
commit
42f3cf0765
|
@ -1212,34 +1212,34 @@ public interface ActiveMQServerControl {
|
|||
String listAddresses(@Parameter(name = "separator", desc = "Separator used on the string listing") String separator) throws Exception;
|
||||
|
||||
@Operation(desc = "Search for Connections", impact = MBeanOperationInfo.INFO)
|
||||
String listConnections(@Parameter(name = "Options") String options,
|
||||
@Parameter(name = "Page Number") int page,
|
||||
@Parameter(name = "Page Size") int pageSize) throws Exception;
|
||||
String listConnections(@Parameter(name = "options", desc = "Options") String options,
|
||||
@Parameter(name = "pageNumber", desc = "Page Number") int page,
|
||||
@Parameter(name = "pageSize", desc = "Page Size") int pageSize) throws Exception;
|
||||
|
||||
@Operation(desc = "Search for Sessions", impact = MBeanOperationInfo.INFO)
|
||||
String listSessions(@Parameter(name = "Options") String options,
|
||||
@Parameter(name = "Page Number") int page,
|
||||
@Parameter(name = "Page Size") int pageSize) throws Exception;
|
||||
String listSessions(@Parameter(name = "options", desc = "Options") String options,
|
||||
@Parameter(name = "pageNumber", desc = "Page Number") int page,
|
||||
@Parameter(name = "pageSize", desc = "Page Size") int pageSize) throws Exception;
|
||||
|
||||
@Operation(desc = "Search for Consumers", impact = MBeanOperationInfo.INFO)
|
||||
String listConsumers(@Parameter(name = "Options") String options,
|
||||
@Parameter(name = "Page Number") int page,
|
||||
@Parameter(name = "Page Size") int pageSize) throws Exception;
|
||||
String listConsumers(@Parameter(name = "options", desc = "Options") String options,
|
||||
@Parameter(name = "pageNumber", desc = "Page Number") int page,
|
||||
@Parameter(name = "pageSize", desc = "Page Size") int pageSize) throws Exception;
|
||||
|
||||
@Operation(desc = "Search for Consumers", impact = MBeanOperationInfo.INFO)
|
||||
String listProducers(@Parameter(name = "Options") String options,
|
||||
@Parameter(name = "Page Number") int page,
|
||||
@Parameter(name = "Page Size") int pageSize) throws Exception;
|
||||
String listProducers(@Parameter(name = "options", desc = "Options") String options,
|
||||
@Parameter(name = "pageNumber", desc = "Page Number") int page,
|
||||
@Parameter(name = "pageSize", desc = "Page Size") int pageSize) throws Exception;
|
||||
|
||||
@Operation(desc = "Search for Addresses", impact = MBeanOperationInfo.INFO)
|
||||
String listAddresses(@Parameter(name = "Options") String options,
|
||||
@Parameter(name = "Page Number") int page,
|
||||
@Parameter(name = "Page Size") int pageSize) throws Exception;
|
||||
String listAddresses(@Parameter(name = "options", desc = "Options") String options,
|
||||
@Parameter(name = "pageNumber", desc = "Page Number") int page,
|
||||
@Parameter(name = "pageSize", desc = "Page Size") int pageSize) throws Exception;
|
||||
|
||||
@Operation(desc = "Search for Queues", impact = MBeanOperationInfo.INFO)
|
||||
String listQueues(@Parameter(name = "Options") String options,
|
||||
@Parameter(name = "Page Number") int page,
|
||||
@Parameter(name = "Page Size") int pageSize) throws Exception;
|
||||
String listQueues(@Parameter(name = "options", desc = "Options") String options,
|
||||
@Parameter(name = "pageNumber", desc = "Page Number") int page,
|
||||
@Parameter(name = "pageSize", desc = "Page Size") int pageSize) throws Exception;
|
||||
|
||||
/**
|
||||
* Returns the names of the queues created on this server with the given routing-type.
|
||||
|
|
Loading…
Reference in New Issue