/* * Copyright © 2016 AT&T and others. 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.transportpce.common; public final class ResponseCodes { public static final String RESPONSE_FAILED = "500"; public static final String RESPONSE_OK = "200"; public static final String FINAL_ACK_YES = "Yes"; public static final String FINAL_ACK_NO = "No"; public static final String SUCCESS_RESULT = "Success"; public static final String FAILED_RESULT = "Failed"; public static final String IN_PORGRESS_RESULT = "In Progress"; private ResponseCodes() { } }