mirror of https://github.com/apache/cloudstack.git
Access static fields in static way.
This commit is contained in:
parent
a0c48d7fa1
commit
08c377ea55
|
|
@ -103,7 +103,7 @@ public class AssignToLoadBalancerRuleCmd extends BaseAsyncCmd {
|
|||
}
|
||||
|
||||
public String getSyncObjType() {
|
||||
return this.networkSyncObject;
|
||||
return BaseAsyncCmd.networkSyncObject;
|
||||
}
|
||||
|
||||
public Long getSyncObjId() {
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ import java.util.List;
|
|||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.api.ApiConstants;
|
||||
import com.cloud.api.BaseAsyncCmd;
|
||||
import com.cloud.api.BaseAsyncCreateCmd;
|
||||
import com.cloud.api.BaseCmd;
|
||||
import com.cloud.api.Implementation;
|
||||
|
|
@ -176,7 +177,7 @@ public class AssociateIPAddrCmd extends BaseAsyncCreateCmd {
|
|||
|
||||
|
||||
public String getSyncObjType() {
|
||||
return this.networkSyncObject;
|
||||
return BaseAsyncCmd.networkSyncObject;
|
||||
}
|
||||
|
||||
public Long getSyncObjId() {
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ package com.cloud.api.commands;
|
|||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.api.ApiConstants;
|
||||
import com.cloud.api.BaseAsyncCmd;
|
||||
import com.cloud.api.BaseAsyncCreateCmd;
|
||||
import com.cloud.api.BaseCmd;
|
||||
import com.cloud.api.Implementation;
|
||||
|
|
@ -241,7 +242,7 @@ public class CreateIpForwardingRuleCmd extends BaseAsyncCreateCmd implements Por
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.ipAddressSyncObject;
|
||||
return BaseAsyncCmd.ipAddressSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ package com.cloud.api.commands;
|
|||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.api.ApiConstants;
|
||||
import com.cloud.api.BaseAsyncCmd;
|
||||
import com.cloud.api.BaseAsyncCreateCmd;
|
||||
import com.cloud.api.BaseCmd;
|
||||
import com.cloud.api.Implementation;
|
||||
|
|
@ -232,7 +233,7 @@ public class CreatePortForwardingRuleCmd extends BaseAsyncCreateCmd implements
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.ipAddressSyncObject;
|
||||
return BaseAsyncCmd.ipAddressSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ package com.cloud.api.commands;
|
|||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.api.ApiConstants;
|
||||
import com.cloud.api.BaseAsyncCmd;
|
||||
import com.cloud.api.BaseAsyncCreateCmd;
|
||||
import com.cloud.api.BaseCmd;
|
||||
import com.cloud.api.Implementation;
|
||||
|
|
@ -155,7 +156,7 @@ public class CreateRemoteAccessVpnCmd extends BaseAsyncCreateCmd {
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.ipAddressSyncObject;
|
||||
return BaseAsyncCmd.ipAddressSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ public class DeleteIpForwardingRuleCmd extends BaseAsyncCmd {
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.ipAddressSyncObject;
|
||||
return BaseAsyncCmd.ipAddressSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ public class DeleteLoadBalancerRuleCmd extends BaseAsyncCmd {
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.networkSyncObject;
|
||||
return BaseAsyncCmd.networkSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ public class DeletePortForwardingRuleCmd extends BaseAsyncCmd {
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.ipAddressSyncObject;
|
||||
return BaseAsyncCmd.ipAddressSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ public class DeleteRemoteAccessVpnCmd extends BaseAsyncCmd {
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.ipAddressSyncObject;
|
||||
return BaseAsyncCmd.ipAddressSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ public class DisableStaticNatCmd extends BaseAsyncCmd {
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.ipAddressSyncObject;
|
||||
return BaseAsyncCmd.ipAddressSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ public class RemoveFromLoadBalancerRuleCmd extends BaseAsyncCmd {
|
|||
|
||||
@Override
|
||||
public String getSyncObjType() {
|
||||
return this.networkSyncObject;
|
||||
return BaseAsyncCmd.networkSyncObject;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue