Fix incorrect OVSDB class names
[ovsdb.git] / schemas / hardware_vtep / src / main / java / org / opendaylight / ovsdb / schema / hardwarevtep / ArpSourcesRemote.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
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  * Authors : Madhu Venugopal
9  */
10 package org.opendaylight.ovsdb.schema.hardwarevtep;
11
12 import org.opendaylight.ovsdb.lib.notation.Column;
13 import org.opendaylight.ovsdb.lib.notation.UUID;
14 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
15 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
16 import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
17 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
18 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
19
20 @TypedTable(name="Arp_Sources_Remote", database="hardware_vtep", fromVersion="1.2.0")
21 public interface ArpSourcesRemote extends TypedBaseTable<GenericTableSchema> {
22     @TypedColumn(name="src_mac", method=MethodType.GETCOLUMN, fromVersion="1.2.0")
23     public Column<GenericTableSchema, String> getSrcMacColumn();
24
25     @TypedColumn(name="src_mac", method=MethodType.GETDATA, fromVersion="1.2.0")
26     public String getSrcMac();
27
28     @TypedColumn(name="src_mac", method=MethodType.SETDATA, fromVersion="1.2.0")
29     public void setSrcMac(String srcMac);
30
31     @TypedColumn(name="locator", method=MethodType.GETCOLUMN, fromVersion="1.2.0")
32     public Column<GenericTableSchema, UUID> getLocatorColumn();
33
34     @TypedColumn(name="locator", method=MethodType.SETDATA, fromVersion="1.2.0")
35     public void setLocator(UUID locator);
36 }