/* * [[ Authors will Fill in the Copyright header ]] * * 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 * * Authors : Brent Salisbury, Madhu Venugopal, Evan Zeller */ package org.opendaylight.ovsdb.lib.table; import org.opendaylight.ovsdb.lib.notation.OvsDBMap; import org.opendaylight.ovsdb.lib.table.internal.Table; import com.fasterxml.jackson.annotation.JsonIgnore; public class Capability extends Table { public static final Name NAME = new Name("Capability") {}; private OvsDBMap details; public OvsDBMap getDetails() { return details; } public void setDetails(OvsDBMap details) { this.details = details; } @Override @JsonIgnore public Name getTableName() { return NAME; } @Override public String toString() { return "Capability [details=" + details + "]"; } }