BUG 2412 - Restconf migration - marking deprecated classes
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / INeutronLoadBalancerHealthMonitorCRUD.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
3  *
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
7  */
8
9 package org.opendaylight.controller.networkconfig.neutron;
10
11 import java.util.List;
12
13 /**
14  * This interface defines the methods for CRUD of NB OpenStack LoadBalancerHealthMonitor objects
15  *
16  */
17
18 public interface INeutronLoadBalancerHealthMonitorCRUD {
19     /**
20      * Applications call this interface method to determine if a particular
21      *LoadBalancerHealthMonitor object exists
22      *
23      * @param uuid
24      *            UUID of the LoadBalancerHealthMonitor object
25      * @return boolean
26      */
27
28     public boolean neutronLoadBalancerHealthMonitorExists(String uuid);
29
30     /**
31      * Applications call this interface method to return if a particular
32      * LoadBalancerHealthMonitor object exists
33      *
34      * @param uuid
35      *            UUID of the LoadBalancerHealthMonitor object
36      * @return {@link NeutronLoadBalancerHealthMonitor}
37      *          OpenStackLoadBalancerHealthMonitor class
38      */
39
40     public NeutronLoadBalancerHealthMonitor getNeutronLoadBalancerHealthMonitor(String uuid);
41
42     /**
43      * Applications call this interface method to return all LoadBalancerHealthMonitor objects
44      *
45      * @return List of OpenStackNetworks objects
46      */
47
48     public List<NeutronLoadBalancerHealthMonitor> getAllNeutronLoadBalancerHealthMonitors();
49
50     /**
51      * Applications call this interface method to add a LoadBalancerHealthMonitor object to the
52      * concurrent map
53      *
54      * @param input
55      *            OpenStackNetwork object
56      * @return boolean on whether the object was added or not
57      */
58
59     public boolean addNeutronLoadBalancerHealthMonitor(NeutronLoadBalancerHealthMonitor input);
60
61     /**
62      * Applications call this interface method to remove a Neutron LoadBalancerHealthMonitor object to the
63      * concurrent map
64      *
65      * @param uuid
66      *            identifier for the LoadBalancerHealthMonitor object
67      * @return boolean on whether the object was removed or not
68      */
69
70     public boolean removeNeutronLoadBalancerHealthMonitor(String uuid);
71
72     /**
73      * Applications call this interface method to edit a LoadBalancerHealthMonitor object
74      *
75      * @param uuid
76      *            identifier of the LoadBalancerHealthMonitor object
77      * @param delta
78      *            OpenStackLoadBalancerHealthMonitor object containing changes to apply
79      * @return boolean on whether the object was updated or not
80      */
81
82     public boolean updateNeutronLoadBalancerHealthMonitor(String uuid, NeutronLoadBalancerHealthMonitor delta);
83
84     /**
85      * Applications call this interface method to see if a MAC address is in use
86      *
87      * @param uuid
88      *            identifier of the LoadBalancerHealthMonitor object
89      * @return boolean on whether the macAddress is already associated with a
90      * port or not
91      */
92
93     public boolean neutronLoadBalancerHealthMonitorInUse(String uuid);
94
95 }