/* * Copyright © 2017 Ericsson India Global Services Pvt Ltd. 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.netvirt.fibmanager; import org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.fibmanager.rev150330.vrfentries.VrfEntry; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; public interface IVrfEntryHandler { void createFlows(InstanceIdentifier identifier, VrfEntry vrfEntry, String rd); void updateFlows(InstanceIdentifier identifier, VrfEntry original, VrfEntry update, String rd); void removeFlows(InstanceIdentifier identifier, VrfEntry vrfEntry, String rd); }