/* * Copyright (c) 2017 Cisco Systems. 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.groupbasedpolicy.renderer.vpp.commands.lisp.dom; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev170315.eid.table.grouping.eid.table.vni.table.VrfSubtable; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev170315.eid.table.grouping.eid.table.vni.table.VrfSubtableBuilder; /** * Created by Shakib Ahmed on 3/20/17. */ public class VrfSubtableDom implements CommandModel { private long tableId; public long getTableId() { return tableId; } public void setTableId(long tableId) { this.tableId = tableId; } @Override public VrfSubtable getSALObject() { return new VrfSubtableBuilder().setTableId(tableId).build(); } }