NO-JIRA Updating parameter description

This commit is contained in:
Clebert Suconic 2021-08-04 17:08:11 -04:00
parent 828d4940ec
commit feddd94276
1 changed files with 2 additions and 2 deletions

View File

@ -499,11 +499,11 @@ public interface ActiveMQServerControl {
@Operation(desc = "Create an address", impact = MBeanOperationInfo.ACTION) @Operation(desc = "Create an address", impact = MBeanOperationInfo.ACTION)
String createAddress(@Parameter(name = "name", desc = "The name of the address") String name, String createAddress(@Parameter(name = "name", desc = "The name of the address") String name,
@Parameter(name = "routingTypes", desc = "Comma separated list of Routing Types (anycast/multicast)") String routingTypes) throws Exception; @Parameter(name = "routingTypes", desc = "Comma separated list of Routing Types (ANYCAST/MULTICAST)") String routingTypes) throws Exception;
@Operation(desc = "Update an address", impact = MBeanOperationInfo.ACTION) @Operation(desc = "Update an address", impact = MBeanOperationInfo.ACTION)
String updateAddress(@Parameter(name = "name", desc = "The name of the address") String name, String updateAddress(@Parameter(name = "name", desc = "The name of the address") String name,
@Parameter(name = "routingTypes", desc = "Comma separated list of Routing Types (anycast/multicast)") String routingTypes) throws Exception; @Parameter(name = "routingTypes", desc = "Comma separated list of Routing Types (ANYCAST/MULTICAST)") String routingTypes) throws Exception;
@Operation(desc = "Delete an address", impact = MBeanOperationInfo.ACTION) @Operation(desc = "Delete an address", impact = MBeanOperationInfo.ACTION)
void deleteAddress(@Parameter(name = "name", desc = "The name of the address") String name) throws Exception; void deleteAddress(@Parameter(name = "name", desc = "The name of the address") String name) throws Exception;