blob: 28272d6c45ed659acc4c813ac6f36d03d31cbaa5 [file] [log] [blame]
Yoonseon Handfd32b12016-10-13 12:05:24 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.incubator.net.virtual.provider;
17
18import org.onosproject.incubator.net.virtual.NetworkId;
19import org.onosproject.net.packet.PacketContext;
20
21/**
22 * Entity capable of processing inbound packets for virtual networks.
23 */
24public interface VirtualPacketProviderService
25 extends VirtualProviderService<VirtualPacketProvider> {
26
27 /**
28 * Submits inbound packet context for processing to virtual network core.
29 * This processing will be done synchronously, i.e. run-to-completion.
30 * This context is translated with virtual concepts.
31 *
32 * @param networkId the virtual network ID which will handle the packet context
33 * @param context inbound packet context
34 */
35 void processPacket(NetworkId networkId, PacketContext context);
36
37}