fix associate ip exception

This commit is contained in:
Chiradeep Vittal 2011-08-09 09:53:09 -07:00
parent 536db8a1de
commit 779ca9ac1a
2 changed files with 1 additions and 20 deletions

View File

@ -190,12 +190,5 @@ public class AssociateIPAddrCmd extends BaseAsyncCreateCmd {
public AsyncJob.Type getInstanceType() {
return AsyncJob.Type.IpAddress;
}
public AssociateIPAddrCmd(String accountName, Long domainId, Long zoneId, Long networkId) {
super();
this.accountName = accountName;
this.domainId = domainId;
this.zoneId = zoneId;
this.networkId = networkId;
}
}

View File

@ -120,16 +120,4 @@ public class ListLoadBalancerRulesCmd extends BaseListCmd {
this.setResponseObject(response);
}
/*
public ListLoadBalancerRulesCmd(String accountName, Long domainId, Long id, String loadBalancerRuleName, Long publicIpId, Long virtualMachineId, Long zoneId) {
super();
this.accountName = accountName;
this.domainId = domainId;
this.id = id;
this.loadBalancerRuleName = loadBalancerRuleName;
this.publicIpId = publicIpId;
this.virtualMachineId = virtualMachineId;
this.zoneId = zoneId;
}
*/
}