mirror of https://github.com/apache/cloudstack.git
Findbugs: scariest issues in ApiResponseHelper fixed (cherry picked from
commit 9a1b882d0e)
This commit is contained in:
parent
60e8d131cf
commit
1c7361756c
|
|
@ -36,7 +36,8 @@ public interface FirewallRule extends ControlledEntity, Identity, InternalIdenti
|
|||
Staged, // Rule been created but has never got through network rule conflict detection. Rules in this state can not be sent to network elements.
|
||||
Add, // Add means the rule has been created and has gone through network rule conflict detection.
|
||||
Active, // Rule has been sent to the network elements and reported to be active.
|
||||
Revoke // Revoke means this rule has been revoked. If this rule has been sent to the network elements, the rule will be deleted from database.
|
||||
Revoke, // Revoke means this rule has been revoked. If this rule has been sent to the network elements, the rule will be deleted from database.
|
||||
Deleting // rule has been revoked and is scheduled for deletion
|
||||
}
|
||||
|
||||
enum TrafficType {
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@ public interface StaticRoute extends ControlledEntity, Identity, InternalIdentit
|
|||
Staged, // route been created but has never got through network rule conflict detection. Routes in this state can not be sent to VPC virtual router.
|
||||
Add, // Add means the route has been created and has gone through network rule conflict detection.
|
||||
Active, // Route has been sent to the VPC router and reported to be active.
|
||||
Revoke // Revoke means this route has been revoked. If this route has been sent to the VPC router, the route will be deleted from database.
|
||||
Revoke, // Revoke means this route has been revoked. If this route has been sent to the VPC router, the route will be deleted from database.
|
||||
Deleting // rule has been revoked and is scheduled for deletion
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -384,8 +384,9 @@ public class ApiResponseHelper implements ResponseGenerator {
|
|||
populateDomain(resourceLimitResponse, accountTemp.getDomainId());
|
||||
}
|
||||
resourceLimitResponse.setResourceType(Integer.valueOf(limit.getType().getOrdinal()).toString());
|
||||
|
||||
if ((limit.getType() == ResourceType.primary_storage || limit.getType() == ResourceType.secondary_storage) && limit.getMax() >= 0) {
|
||||
resourceLimitResponse.setMax((long)Math.ceil(limit.getMax() / ResourceType.bytesToGiB));
|
||||
resourceLimitResponse.setMax((long)Math.ceil((double)limit.getMax() / ResourceType.bytesToGiB));
|
||||
} else {
|
||||
resourceLimitResponse.setMax(limit.getMax());
|
||||
}
|
||||
|
|
@ -1804,8 +1805,6 @@ public class ApiResponseHelper implements ResponseGenerator {
|
|||
public SecurityGroupResponse createSecurityGroupResponseFromSecurityGroupRule(List<? extends SecurityRule> securityRules) {
|
||||
SecurityGroupResponse response = new SecurityGroupResponse();
|
||||
Map<Long, Account> securiytGroupAccounts = new HashMap<Long, Account>();
|
||||
Map<Long, SecurityGroup> allowedSecurityGroups = new HashMap<Long, SecurityGroup>();
|
||||
Map<Long, Account> allowedSecuriytGroupAccounts = new HashMap<Long, Account>();
|
||||
|
||||
if ((securityRules != null) && !securityRules.isEmpty()) {
|
||||
SecurityGroupJoinVO securityGroup = ApiDBUtils.findSecurityGroupViewById(securityRules.get(0).getSecurityGroupId()).get(0);
|
||||
|
|
@ -3008,11 +3007,10 @@ public class ApiResponseHelper implements ResponseGenerator {
|
|||
response.setCidr(result.getCidr());
|
||||
|
||||
StaticRoute.State state = result.getState();
|
||||
String stateToSet = state.toString();
|
||||
if (state.equals(FirewallRule.State.Revoke)) {
|
||||
stateToSet = "Deleting";
|
||||
if (state.equals(StaticRoute.State.Revoke)) {
|
||||
state = StaticRoute.State.Deleting;
|
||||
}
|
||||
response.setState(stateToSet);
|
||||
response.setState(state.toString());
|
||||
populateAccount(response, result.getAccountId());
|
||||
populateDomain(response, result.getDomainId());
|
||||
|
||||
|
|
@ -3501,11 +3499,11 @@ public class ApiResponseHelper implements ResponseGenerator {
|
|||
ApplicationLoadBalancerRuleResponse ruleResponse = new ApplicationLoadBalancerRuleResponse();
|
||||
ruleResponse.setInstancePort(lb.getDefaultPortStart());
|
||||
ruleResponse.setSourcePort(lb.getSourcePortStart());
|
||||
String stateToSet = lb.getState().toString();
|
||||
FirewallRule.State stateToSet = lb.getState();
|
||||
if (stateToSet.equals(FirewallRule.State.Revoke)) {
|
||||
stateToSet = "Deleting";
|
||||
stateToSet = FirewallRule.State.Deleting;
|
||||
}
|
||||
ruleResponse.setState(stateToSet);
|
||||
ruleResponse.setState(stateToSet.toString());
|
||||
ruleResponse.setObjectName("loadbalancerrule");
|
||||
ruleResponses.add(ruleResponse);
|
||||
lbResponse.setLbRules(ruleResponses);
|
||||
|
|
|
|||
Loading…
Reference in New Issue