X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fpacket%2FIPluginInDataPacketService.java;fp=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fpacket%2FIPluginInDataPacketService.java;h=0000000000000000000000000000000000000000;hp=8252715ab7885c0291b06639d3d5409c1294b4cb;hb=42c32160bfd41de57189bb246fec5ffb48ed8e9e;hpb=edf5bfcee83c750853253ccfd991ba7000f5f65b diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/packet/IPluginInDataPacketService.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/packet/IPluginInDataPacketService.java deleted file mode 100644 index 8252715ab7..0000000000 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/packet/IPluginInDataPacketService.java +++ /dev/null @@ -1,35 +0,0 @@ - -/* - * Copyright (c) 2013 Cisco Systems, Inc. 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 - */ - -/** - * @file IPluginInDataPacketService.java - * - * @brief Data Packet Services exported by SouthBound plugins for SAL usage - * - * Data Packet Services exported by SouthBound plugins for SAL usage - */ -package org.opendaylight.controller.sal.packet; - -/** - * Data Packet Services exported by SouthBound plugins for SAL usage. - * The service will be used by SAL such that for every Protocol Plugin - * there is only one expected, for this reason the service need to be - * registered in the OSGi service registry along with the property: - * - "protocoloPluginType" - * the value of the property will org.opendaylight.controller.sal.core.Node.NodeIDType - */ -public interface IPluginInDataPacketService { - /** - * Transmit a data Packet. Packet will go out ONLY if the packet - * has property OutgoingNodeConnector set. - * - * @param outPkt Packet to be transmitted out - */ - void transmitDataPacket(RawPacket outPkt); -}