fix some compilation warnings
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / ResponseCodes.java
1 /*
2  * Copyright © 2016 AT&T and others.  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.transportpce.common;
9
10 public final class ResponseCodes {
11
12     public static final String RESPONSE_FAILED = "500";
13     public static final String RESPONSE_OK = "200";
14     public static final String FINAL_ACK_YES = "Yes";
15     public static final String FINAL_ACK_NO = "No";
16
17     public static final String SUCCESS_RESULT = "Success";
18     public static final String FAILED_RESULT = "Failed";
19
20     private ResponseCodes() {
21     }
22
23 }