X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsamples%2Fnorthbound%2Floadbalancer%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsamples%2Floadbalancer%2Fnorthbound%2FNBConst.java;fp=opendaylight%2Fsamples%2Fnorthbound%2Floadbalancer%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsamples%2Floadbalancer%2Fnorthbound%2FNBConst.java;h=0000000000000000000000000000000000000000;hb=42c32160bfd41de57189bb246fec5ffb48ed8e9e;hp=a5d2091470b46aeae9a00e3f9790c06cfae25af2;hpb=edf5bfcee83c750853253ccfd991ba7000f5f65b;p=controller.git diff --git a/opendaylight/samples/northbound/loadbalancer/src/main/java/org/opendaylight/controller/samples/loadbalancer/northbound/NBConst.java b/opendaylight/samples/northbound/loadbalancer/src/main/java/org/opendaylight/controller/samples/loadbalancer/northbound/NBConst.java deleted file mode 100644 index a5d2091470..0000000000 --- a/opendaylight/samples/northbound/loadbalancer/src/main/java/org/opendaylight/controller/samples/loadbalancer/northbound/NBConst.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright IBM Corporation, 2013. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.controller.samples.loadbalancer.northbound; - -/** - * This class defines all the constants used by the load balancer north bound service - * - */ -public class NBConst { - - public static final String RES_VIP_ALREADY_EXIST= " VIP already exists"; - - public static final String RES_VIP_NOT_FOUND= " VIP not found"; - - public static final String RES_VIP_CREATION_FAILED = " Creation of VIP failed"; - - public static final String RES_VIP_DELETION_FAILED = " Deletion of VIP failed"; - - public static final String RES_VIP_UPDATE_FAILED = " Update of VIP failed"; - - public static final String RES_POOL_ALREADY_EXIST= " Pool already exists"; - - public static final String RES_POOL_NOT_FOUND= " Pool not found"; - - public static final String RES_POOL_CREATION_FAILED = " Creation of pool failed"; - - public static final String RES_POOL_DELETION_FAILED = " Deletion of pool failed"; - - public static final String RES_POOLMEMBER_ALREADY_EXIST= " Pool member already exists"; - - public static final String RES_POOLMEMBER_NOT_FOUND= " Pool member not found"; - - public static final String RES_POOLMEMBER_CREATION_FAILED = " Creation of pool member failed"; - - public static final String RES_POOLMEMBER_DELETION_FAILED = " Deletion of pool member failed"; - - public static final String RES_VIP_POOL_EXIST = "Pool already attached to a VIP"; -}