16c7d3716973b3d9e4b18d9ed60469e2469b24e5
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / INeutronLoadBalancerPoolAware.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 /**
12  * This interface defines the methods a service that wishes to be aware of LoadBalancerPool Rules needs to implement
13  *
14  */
15
16 public interface INeutronLoadBalancerPoolAware {
17
18     /**
19      * Services provide this interface method to indicate if the specified loadBalancerPool can be created
20      *
21      * @param loadBalancerPool
22      *            instance of proposed new LoadBalancerPool object
23      * @return integer
24      *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
25      *            results in the create operation being interrupted and the returned status value reflected in the
26      *            HTTP response.
27      */
28     public int canCreateNeutronLoadBalancerPool(NeutronLoadBalancerPool loadBalancerPool);
29
30     /**
31      * Services provide this interface method for taking action after a loadBalancerPool has been created
32      *
33      * @param loadBalancerPool
34      *            instance of new LoadBalancerPool object
35      * @return void
36      */
37     public void neutronLoadBalancerPoolCreated(NeutronLoadBalancerPool loadBalancerPool);
38
39     /**
40      * Services provide this interface method to indicate if the specified loadBalancerPool can be changed using the specified
41      * delta
42      *
43      * @param delta
44      *            updates to the loadBalancerPool object using patch semantics
45      * @param original
46      *            instance of the LoadBalancerPool object to be updated
47      * @return integer
48      *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
49      *            results in the update operation being interrupted and the returned status value reflected in the
50      *            HTTP response.
51      */
52     public int canUpdateNeutronLoadBalancerPool(NeutronLoadBalancerPool delta, NeutronLoadBalancerPool original);
53
54     /**
55      * Services provide this interface method for taking action after a loadBalancerPool has been updated
56      *
57      * @param loadBalancerPool
58      *            instance of modified LoadBalancerPool object
59      * @return void
60      */
61     public void neutronLoadBalancerPoolUpdated(NeutronLoadBalancerPool loadBalancerPool);
62
63     /**
64      * Services provide this interface method to indicate if the specified loadBalancerPool can be deleted
65      *
66      * @param loadBalancerPool
67      *            instance of the LoadBalancerPool object to be deleted
68      * @return integer
69      *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
70      *            results in the delete operation being interrupted and the returned status value reflected in the
71      *            HTTP response.
72      */
73     public int canDeleteNeutronLoadBalancerPool(NeutronLoadBalancerPool loadBalancerPool);
74
75     /**
76      * Services provide this interface method for taking action after a loadBalancerPool has been deleted
77      *
78      * @param loadBalancerPool
79      *            instance of deleted LoadBalancerPool object
80      * @return void
81      */
82     public void neutronLoadBalancerPoolDeleted(NeutronLoadBalancerPool loadBalancerPool);
83 }