@@ -127,7 +127,7 @@ public interface NetworkGuru extends Adapter {
127127 * @throws InsufficientAddressCapacityException if there are not addresses
128128 * to be assigned.
129129 */
130- NicProfile allocate (Network network , NicProfile nic , VirtualMachineProfile <? extends VirtualMachine > vm ) throws InsufficientVirtualNetworkCapcityException , InsufficientAddressCapacityException , ConcurrentOperationException ;
130+ NicProfile allocate (Network network , NicProfile nic , VirtualMachineProfile vm ) throws InsufficientVirtualNetworkCapcityException , InsufficientAddressCapacityException , ConcurrentOperationException ;
131131
132132 /**
133133 * Once a guest network is implemented, then the virtual machine must
@@ -147,7 +147,7 @@ public interface NetworkGuru extends Adapter {
147147 * @throws ConcurrentOperationException if there are multiple operations
148148 * happening on this guest network or vm.
149149 */
150- void reserve (NicProfile nic , Network network , VirtualMachineProfile <? extends VirtualMachine > vm , DeployDestination dest , ReservationContext context ) throws InsufficientVirtualNetworkCapcityException , InsufficientAddressCapacityException , ConcurrentOperationException ;
150+ void reserve (NicProfile nic , Network network , VirtualMachineProfile vm , DeployDestination dest , ReservationContext context ) throws InsufficientVirtualNetworkCapcityException , InsufficientAddressCapacityException , ConcurrentOperationException ;
151151
152152 /**
153153 * When a virtual machine is stopped, the NetworkGuru is informed via the
@@ -158,7 +158,7 @@ public interface NetworkGuru extends Adapter {
158158 * @param reservationId reservation id passed to it in the ReservationContext
159159 * @return true if release is successful or false if unsuccessful.
160160 */
161- boolean release (NicProfile nic , VirtualMachineProfile <? extends VirtualMachine > vm , String reservationId );
161+ boolean release (NicProfile nic , VirtualMachineProfile vm , String reservationId );
162162
163163 /**
164164 * When a virtual machine is destroyed, the NetworkGuru is informed via
@@ -169,7 +169,7 @@ public interface NetworkGuru extends Adapter {
169169 * @param nic nic that the vm was using to access the guest network.
170170 * @param vm virtual machine being destroyed.
171171 */
172- void deallocate (Network network , NicProfile nic , VirtualMachineProfile <? extends VirtualMachine > vm );
172+ void deallocate (Network network , NicProfile nic , VirtualMachineProfile vm );
173173
174174 /**
175175 * @deprecated This method should not be here in the first place. What does this really mean? Is it always persisted
0 commit comments