fix typos balacner -> balancer

Signed-off-by: Daan Hoogland <daan.hoogland@gmail.com>
This commit is contained in:
Rene Moser 2015-05-20 21:29:51 +02:00 committed by Daan Hoogland
parent 23a44d6417
commit 5cd35a2237
3 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ public abstract class BaseAsyncCmd extends BaseCmd {
public static final String networkSyncObject = "network";
public static final String vpcSyncObject = "vpc";
public static final String snapshotHostSyncObject = "snapshothost";
public static final String gslbSyncObject = "globalserverloadbalacner";
public static final String gslbSyncObject = "globalserverloadbalancer";
private static final Logger s_logger = Logger.getLogger(BaseAsyncCmd.class.getName());
private Object job;

View File

@ -73,7 +73,7 @@ public class AssignToGlobalLoadBalancerRuleCmd extends BaseAsyncCmd {
collectionType = CommandType.UUID,
entityType = FirewallRuleResponse.class,
required = true,
description = "the list load balancer rules that " + "will be assigned to gloabal load balacner rule")
description = "the list load balancer rules that will be assigned to global load balancer rule")
private List<Long> loadBalancerRulesIds;
@Parameter(name = ApiConstants.GSLB_LBRULE_WEIGHT_MAP,

View File

@ -42,7 +42,7 @@ import com.cloud.user.Account;
import com.cloud.utils.StringUtils;
@APICommand(name = "removeFromGlobalLoadBalancerRule",
description = "Removes a load balancer rule association with" + " global load balancer rule",
description = "Removes a load balancer rule association with global load balancer rule",
responseObject = SuccessResponse.class,
requestHasSensitiveInfo = false,
responseHasSensitiveInfo = false)
@ -67,7 +67,7 @@ public class RemoveFromGlobalLoadBalancerRuleCmd extends BaseAsyncCmd {
collectionType = CommandType.UUID,
entityType = FirewallRuleResponse.class,
required = true,
description = "the list load balancer rules that " + "will be assigned to gloabal load balacner rule")
description = "the list load balancer rules that will be assigned to gloabal load balancer rule")
private List<Long> loadBalancerRulesIds;
/////////////////////////////////////////////////////