Fix imports after Lisp model update in honeycomb
[groupbasedpolicy.git] / renderers / vpp / src / main / java / org / opendaylight / groupbasedpolicy / renderer / vpp / commands / lisp / dom / VrfSubtableDom.java
1 /*
2  * Copyright (c) 2017 Cisco Systems. All rights reserved.
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
9 package org.opendaylight.groupbasedpolicy.renderer.vpp.commands.lisp.dom;
10
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev170808.eid.table.grouping.eid.table.vni.table.VrfSubtable;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev170808.eid.table.grouping.eid.table.vni.table.VrfSubtableBuilder;
13
14 /**
15  * Created by Shakib Ahmed on 3/20/17.
16  */
17 public class VrfSubtableDom implements CommandModel {
18     private long tableId;
19
20     public long getTableId() {
21         return tableId;
22     }
23
24     public void setTableId(long tableId) {
25         this.tableId = tableId;
26     }
27
28     @Override
29     public VrfSubtable getSALObject() {
30         return new VrfSubtableBuilder().setTableId(tableId).build();
31     }
32 }