2 * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.sal.rest.doc.swagger;
11 * Implementation of swagger spec
12 * (see <a href="https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md#525-response-message-object">
13 * https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md#525-response-message-object</a>)
15 public class ResponseMessage {
17 private String message;
19 public int getCode() {
23 public void setCode(int code) {
27 public String getMessage() {
31 public void setMessage(String message) {
32 this.message = message;