2 * Copyright (c) 2013, 2015 IBM Corporation and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
9 package org.opendaylight.netvirt.openstack.netvirt.translator.crud;
11 import java.util.List;
13 import org.opendaylight.netvirt.openstack.netvirt.translator.NeutronRouter;
16 * This interface defines the methods for CRUD of NB Router objects
20 public interface INeutronRouterCRUD {
22 * Applications call this interface method to determine if a particular
23 * Router object exists
26 * UUID of the Router object
30 boolean routerExists(String uuid);
33 * Applications call this interface method to return if a particular
34 * Router object exists
37 * UUID of the Router object
38 * @return {@link NeutronRouter}
39 * OpenStack Router class
42 NeutronRouter getRouter(String uuid);
45 * Applications call this interface method to return all Router objects
47 * @return List of OpenStackRouters objects
50 List<NeutronRouter> getAllRouters();
53 * Applications call this interface method to add a Router object to the
57 * OpenStackRouter object
58 * @return boolean on whether the object was added or not
61 boolean addRouter(NeutronRouter input);
64 * Applications call this interface method to remove a Router object to the
68 * identifier for the Router object
69 * @return boolean on whether the object was removed or not
72 boolean removeRouter(String uuid);
75 * Applications call this interface method to edit a Router object
78 * identifier of the Router object
80 * OpenStackRouter object containing changes to apply
81 * @return boolean on whether the object was updated or not
84 boolean updateRouter(String uuid, NeutronRouter delta);
87 * Applications call this interface method to check if a router is in use
90 * identifier of the Router object
91 * @return boolean on whether the router is in use or not
94 boolean routerInUse(String routerUUID);