2020import com .cloud .deploy .DeploymentPlan ;
2121import com .cloud .exception .ConcurrentOperationException ;
2222import com .cloud .exception .InsufficientAddressCapacityException ;
23- import com .cloud .exception .InsufficientVirtualNetworkCapcityException ;
23+ import com .cloud .exception .InsufficientVirtualNetworkCapacityException ;
2424import com .cloud .network .Network ;
2525import com .cloud .network .NetworkProfile ;
2626import com .cloud .network .Networks .TrafficType ;
@@ -103,13 +103,13 @@ public interface NetworkGuru extends Adapter {
103103 * @param offering network offering that the network was created with.
104104 * @param destination where the network is being deployed in.
105105 * @return a fully implemented Network.
106- * @throws InsufficientVirtualNetworkCapcityException if there's not
106+ * @throws InsufficientVirtualNetworkCapacityException if there's not
107107 * enough resources to make the guest network usable in the physical
108108 * environment. At this time, the admin generally must be involved to
109109 * allocate more resources before any more guest network can be implemented.
110110 */
111111 Network implement (Network network , NetworkOffering offering , DeployDestination destination , ReservationContext context )
112- throws InsufficientVirtualNetworkCapcityException ;
112+ throws InsufficientVirtualNetworkCapacityException ;
113113
114114 /**
115115 * Once a guest network has been designed, virtual machines can be
@@ -122,12 +122,12 @@ Network implement(Network network, NetworkOffering offering, DeployDestination d
122122 * network settings to make sure everything will work.
123123 * @param vm virtual machine that is about to be deployed.
124124 * @return NicProfile nic with all of the information
125- * @throws InsufficientVirtualNetworkCapcityException if there's
125+ * @throws InsufficientVirtualNetworkCapacityException if there's
126126 * insufficient capacity within the guest network.
127127 * @throws InsufficientAddressCapacityException if there are not addresses
128128 * to be assigned.
129129 */
130- NicProfile allocate (Network network , NicProfile nic , VirtualMachineProfile vm ) throws InsufficientVirtualNetworkCapcityException ,
130+ NicProfile allocate (Network network , NicProfile nic , VirtualMachineProfile vm ) throws InsufficientVirtualNetworkCapacityException ,
131131 InsufficientAddressCapacityException , ConcurrentOperationException ;
132132
133133 /**
@@ -141,15 +141,15 @@ NicProfile allocate(Network network, NicProfile nic, VirtualMachineProfile vm) t
141141 * @param vm vm
142142 * @param dest destination the vm is deployed to
143143 * @param context Reservation context from which to get the owner, caller, and reservation id
144- * @throws InsufficientVirtualNetworkCapcityException if there's not enough
144+ * @throws InsufficientVirtualNetworkCapacityException if there's not enough
145145 * resources.
146146 * @throws InsufficientAddressCapacityException if there's not enough ip
147147 * addresses.
148148 * @throws ConcurrentOperationException if there are multiple operations
149149 * happening on this guest network or vm.
150150 */
151151 void reserve (NicProfile nic , Network network , VirtualMachineProfile vm , DeployDestination dest , ReservationContext context )
152- throws InsufficientVirtualNetworkCapcityException , InsufficientAddressCapacityException , ConcurrentOperationException ;
152+ throws InsufficientVirtualNetworkCapacityException , InsufficientAddressCapacityException , ConcurrentOperationException ;
153153
154154 /**
155155 * When a virtual machine is stopped, the NetworkGuru is informed via the
0 commit comments