Updating fix for bug 3989 based on discussion in OVSDB meeting
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / message / Response.java
1 /*
2  * Copyright (c) 2013, 2015 EBay Software Foundation 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
9 package org.opendaylight.ovsdb.lib.message;
10
11 public abstract class Response {
12     Object error;
13     Object details;
14
15     public Object getError() {
16         return error;
17     }
18
19     public void setError(Object error) {
20         this.error = error;
21     }
22
23     public Object getDetails() {
24         return details;
25     }
26
27     public void setDetails(Object details) {
28         this.details = details;
29     }
30
31 }