org.opendaylight.ovsdb.schema.hardwarevtep.PhysicalLocator Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2014, 2015 Red Hat, Inc. 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.schema.hardwarevtep;
import java.util.Map;
import java.util.Set;
import org.opendaylight.ovsdb.lib.notation.Column;
import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
@TypedTable(name = "Physical_Locator", database = "hardware_vtep", fromVersion = "1.0.0")
public interface PhysicalLocator extends TypedBaseTable {
@TypedColumn(name = "encapsulation_type", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
Column getEncapsulationTypeColumn();
@TypedColumn(name = "encapsulation_type", method = MethodType.SETDATA, fromVersion = "1.0.0")
void setEncapsulationType(String encapsulationType);
@TypedColumn(name = "dst_ip", method = MethodType.GETCOLUMN, fromVersion = "1.0.0")
Column getDstIpColumn();
@TypedColumn(name = "dst_ip", method = MethodType.SETDATA, fromVersion = "1.0.0")
void setDstIp(String dstIp);
@TypedColumn(name = "bfd", method = MethodType.GETCOLUMN, fromVersion = "1.0.0", untilVersion = "1.2.0")
Column> getBfdColumn();
@TypedColumn(name = "bfd", method = MethodType.SETDATA, fromVersion = "1.0.0", untilVersion = "1.2.0")
void setBfd(Map bfd);
@TypedColumn(name = "bfd_status", method = MethodType.GETCOLUMN, fromVersion = "1.0.0", untilVersion = "1.2.0")
Column> getBfdStatusColumn();
@TypedColumn(name = "bfd_status", method = MethodType.SETDATA, fromVersion = "1.0.0", untilVersion = "1.2.0")
void setBfdStatus(Map bfdStatus);
@TypedColumn(name = "tunnel_key", method = MethodType.GETCOLUMN, fromVersion = "1.5.0")
Column> getTunnelKeyColumn();
@TypedColumn(name = "tunnel_key", method = MethodType.SETDATA, fromVersion = "1.5.0")
void setTunnelKey(Set tunnelKey);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy