org.opendaylight.ovsdb.lib.message.TransactResponse Maven / Gradle / Ivy
/*
* Copyright (c) 2013, 2015 EBay Software Foundation 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.ovsdb.lib.message;
import java.util.List;
import org.opendaylight.ovsdb.lib.operations.OperationResult;
public class TransactResponse extends Response {
List result;
public List getResult() {
return result;
}
public void setResult(List result) {
this.result = result;
}
@Override
public String toString() {
return "TransactResponse [result=" + result + "]";
}
}