2 * Copyright (C) 2014 Red Hat, Inc.
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.controller.networkconfig.neutron;
11 import java.util.List;
13 public interface INeutronLoadBalancerPoolMemberCRUD {
16 * Applications call this interface method to determine if a particular
17 *NeutronLoadBalancerPoolMember object exists
20 * UUID of the NeutronLoadBalancerPoolMember object
24 public boolean neutronLoadBalancerPoolMemberExists(String uuid);
27 * Applications call this interface method to return if a particular
28 * NeutronLoadBalancerPoolMember object exists
31 * UUID of the NeutronLoadBalancerPoolMember object
32 * @return {@link org.opendaylight.controller.networkconfig.neutron.NeutronLoadBalancerPoolMember}
33 * OpenStackNeutronLoadBalancerPoolMember class
36 public NeutronLoadBalancerPoolMember getNeutronLoadBalancerPoolMember(String uuid);
39 * Applications call this interface method to return all NeutronLoadBalancerPoolMember objects
41 * @return List of OpenStackNetworks objects
44 public List<NeutronLoadBalancerPoolMember> getAllNeutronLoadBalancerPoolMembers();
47 * Applications call this interface method to add a NeutronLoadBalancerPoolMember object to the
51 * OpenStackNetwork object
52 * @return boolean on whether the object was added or not
55 public boolean addNeutronLoadBalancerPoolMember(NeutronLoadBalancerPoolMember input);
58 * Applications call this interface method to remove a Neutron NeutronLoadBalancerPoolMember object to the
62 * identifier for the NeutronLoadBalancerPoolMember object
63 * @return boolean on whether the object was removed or not
66 public boolean removeNeutronLoadBalancerPoolMember(String uuid);
69 * Applications call this interface method to edit a NeutronLoadBalancerPoolMember object
72 * identifier of the NeutronLoadBalancerPoolMember object
74 * OpenStackNeutronLoadBalancerPoolMember object containing changes to apply
75 * @return boolean on whether the object was updated or not
78 public boolean updateNeutronLoadBalancerPoolMember(String uuid, NeutronLoadBalancerPoolMember delta);
81 * Applications call this interface method to see if a MAC address is in use
84 * identifier of the NeutronLoadBalancerPoolMember object
85 * @return boolean on whether the macAddress is already associated with a
89 public boolean neutronLoadBalancerPoolMemberInUse(String uuid);