Skip to content

Commit 2b896a3

Browse files
committed
fix security hotspots
1 parent 7cabc66 commit 2b896a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/api/command/AddNsxControllerCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
@APICommand(name = AddNsxControllerCmd.APINAME, description = "Add NSX Controller to CloudStack",
3737
responseObject = NsxControllerResponse.class, requestHasSensitiveInfo = false,
38-
responseHasSensitiveInfo = false, since = "4.19.0.0")
38+
responseHasSensitiveInfo = false, since = "4.19.0")
3939
public class AddNsxControllerCmd extends BaseCmd {
4040
public static final String APINAME = "addNsxController";
4141
public static final Logger LOGGER = LoggerFactory.getLogger(AddNsxControllerCmd.class.getName());

plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/api/command/DeleteNsxControllerCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
@APICommand(name = APINAME, description = "delete NSX Controller to CloudStack",
3737
responseObject = NsxControllerResponse.class, requestHasSensitiveInfo = false,
38-
responseHasSensitiveInfo = false, since = "4.19.0.0")
38+
responseHasSensitiveInfo = false, since = "4.19.0")
3939
public class DeleteNsxControllerCmd extends BaseCmd {
4040
public static final String APINAME = "deleteNsxController";
4141

plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/api/command/ListNsxControllersCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
@APICommand(name = APINAME, description = "list all NSX controllers added to CloudStack",
4141
responseObject = NsxControllerResponse.class, requestHasSensitiveInfo = false,
42-
responseHasSensitiveInfo = false, since = "4.19.0.0")
42+
responseHasSensitiveInfo = false, since = "4.19.0")
4343
public class ListNsxControllersCmd extends BaseListCmd {
4444
public static final String APINAME = "listNsxControllers";
4545
public static final Logger LOGGER = LoggerFactory.getLogger(ListNsxControllersCmd.class.getName());

0 commit comments

Comments
 (0)