mirror of https://github.com/apache/cloudstack.git
The interface change introduced by commit
214bbf3ebd broke the nonoss build.
This commit is contained in:
parent
0984f4319a
commit
53cea844bc
|
|
@ -110,7 +110,7 @@ public class CiscoNexusVSMElement extends CiscoNexusVSMDeviceManagerImpl impleme
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean destroy(Network network)
|
||||
public boolean destroy(Network network, ReservationContext context)
|
||||
throws ConcurrentOperationException, ResourceUnavailableException {
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ public class F5ExternalLoadBalancerElement extends ExternalLoadBalancerDeviceMan
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean destroy(Network config) {
|
||||
public boolean destroy(Network config, ReservationContext context) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ public class JuniperSRXExternalFirewallElement extends ExternalFirewallDeviceMan
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean destroy(Network config) {
|
||||
public boolean destroy(Network config, ReservationContext context) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ public class NetscalerElement extends ExternalLoadBalancerDeviceManagerImpl impl
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean destroy(Network config) {
|
||||
public boolean destroy(Network config, ReservationContext context) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue