@@ -56,7 +56,8 @@ public interface NetworkElement extends Adapter {
5656 * @return true if network configuration is now usable; false if not; null if not handled by this element.
5757 * @throws InsufficientNetworkCapacityException TODO
5858 */
59- boolean implement (Network network , NetworkOffering offering , DeployDestination dest , ReservationContext context ) throws ConcurrentOperationException , ResourceUnavailableException , InsufficientCapacityException ;
59+ boolean implement (Network network , NetworkOffering offering , DeployDestination dest , ReservationContext context )
60+ throws ConcurrentOperationException , ResourceUnavailableException , InsufficientCapacityException ;
6061
6162 /**
6263 * Prepare for a nic to be added into this network.
@@ -70,7 +71,9 @@ public interface NetworkElement extends Adapter {
7071 * @throws ResourceUnavailableException
7172 * @throws InsufficientNetworkCapacityException
7273 */
73- boolean prepare (Network network , NicProfile nic , VirtualMachineProfile <? extends VirtualMachine > vm , DeployDestination dest , ReservationContext context ) throws ConcurrentOperationException , ResourceUnavailableException , InsufficientCapacityException ;
74+ boolean prepare (Network network , NicProfile nic , VirtualMachineProfile <? extends VirtualMachine > vm ,
75+ DeployDestination dest , ReservationContext context ) throws ConcurrentOperationException ,
76+ ResourceUnavailableException , InsufficientCapacityException ;
7477
7578 /**
7679 * A nic is released from this network.
@@ -82,7 +85,8 @@ public interface NetworkElement extends Adapter {
8285 * @throws ConcurrentOperationException
8386 * @throws ResourceUnavailableException
8487 */
85- boolean release (Network network , NicProfile nic , VirtualMachineProfile <? extends VirtualMachine > vm , ReservationContext context ) throws ConcurrentOperationException , ResourceUnavailableException ;
88+ boolean release (Network network , NicProfile nic , VirtualMachineProfile <? extends VirtualMachine > vm ,
89+ ReservationContext context ) throws ConcurrentOperationException , ResourceUnavailableException ;
8690
8791 /**
8892 * The network is being shutdown.
@@ -93,7 +97,8 @@ public interface NetworkElement extends Adapter {
9397 * @throws ConcurrentOperationException
9498 * @throws ResourceUnavailableException
9599 */
96- boolean shutdown (Network network , ReservationContext context , boolean cleanup ) throws ConcurrentOperationException , ResourceUnavailableException ;
100+ boolean shutdown (Network network , ReservationContext context , boolean cleanup )
101+ throws ConcurrentOperationException , ResourceUnavailableException ;
97102
98103 /**
99104 * The network is being destroyed.
@@ -118,7 +123,8 @@ public interface NetworkElement extends Adapter {
118123 * @throws ConcurrentOperationException
119124 * @throws ResourceUnavailableException
120125 */
121- boolean shutdownProviderInstances (PhysicalNetworkServiceProvider provider , ReservationContext context ) throws ConcurrentOperationException , ResourceUnavailableException ;
126+ boolean shutdownProviderInstances (PhysicalNetworkServiceProvider provider , ReservationContext context )
127+ throws ConcurrentOperationException , ResourceUnavailableException ;
122128
123129 /**
124130 * This should return true if out of multiple services provided by this element, only some can be enabled. If all the services MUST be provided, this should return false.
0 commit comments