Normalize Bundle Naming
[ovsdb.git] / schemas / hardwarevtep / src / main / java / org / opendaylight / ovsdb / schema / hardwarevtep / PhysicalLocatorSet.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 java.util.Set;
13
14 import org.opendaylight.ovsdb.lib.notation.Column;
15 import org.opendaylight.ovsdb.lib.notation.UUID;
16 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
17 import org.opendaylight.ovsdb.lib.schema.typed.MethodType;
18 import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
19 import org.opendaylight.ovsdb.lib.schema.typed.TypedColumn;
20 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
21
22 @TypedTable(name="Physical_Locator_Set", database="hardware_vtep", fromVersion="1.0.0")
23 public interface PhysicalLocatorSet extends TypedBaseTable<GenericTableSchema> {
24     @TypedColumn(name="locators", method=MethodType.GETCOLUMN, fromVersion="1.0.0")
25     public Column<GenericTableSchema, Set<UUID>> getLocatorsColumn();
26
27     @TypedColumn(name="locators", method=MethodType.SETDATA, fromVersion="1.0.0")
28     public void setLocators(Set<UUID> locators);
29 }