Simple Load Balancer Application - Recommitting the source codewith the whole source...
[controller.git] / opendaylight / samples / northbound / loadbalancer / src / main / java / org / opendaylight / controller / samples / loadbalancer / northbound / NBConst.java
1 /*
2  * Copyright IBM Corporation, 2013.  All rights reserved.
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 package org.opendaylight.controller.samples.loadbalancer.northbound;
9
10 /**
11  * This class defines all the constants used by the load balancer north bound service
12  *
13  */
14 public class NBConst {
15     
16     public static final String RES_VIP_ALREADY_EXIST= " VIP already exists";
17     
18     public static final String RES_VIP_NOT_FOUND= " VIP not found";
19     
20     public static final String RES_VIP_CREATION_FAILED = " Creation of VIP failed";
21     
22     public static final String RES_VIP_DELETION_FAILED = " Deletion of VIP failed";
23     
24     public static final String RES_VIP_UPDATE_FAILED = " Update of VIP failed";
25     
26     public static final String RES_POOL_ALREADY_EXIST= " Pool already exists";
27     
28     public static final String RES_POOL_NOT_FOUND= " Pool not found";
29     
30     public static final String RES_POOL_CREATION_FAILED = " Creation of pool failed";
31     
32     public static final String RES_POOL_DELETION_FAILED = " Deletion of pool failed";
33     
34     public static final String RES_POOLMEMBER_ALREADY_EXIST= " Pool member already exists";
35     
36     public static final String RES_POOLMEMBER_NOT_FOUND= " Pool member not found";
37     
38     public static final String RES_POOLMEMBER_CREATION_FAILED = " Creation of pool member failed";
39     
40     public static final String RES_POOLMEMBER_DELETION_FAILED = " Deletion of pool member failed";
41     
42     public static final String RES_VIP_POOL_EXIST = "Pool already attached to a VIP";
43 }