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=a5d2091470b46aeae9a00e3f9790c06cfae25af2;hb=541d0a36997f292bb037a2199463431eee538358;hp=4aa4705a53755407aa27709a94dc07d385b6cb84;hpb=fad07e38e57f1c0d8d687e3bae01532196d6e99d;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 index 4aa4705a53..a5d2091470 100644 --- 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 @@ -12,32 +12,32 @@ package org.opendaylight.controller.samples.loadbalancer.northbound; * */ 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"; }