blob: 939eab79482e62596589abe2352ae579b2dcb6d4 [file] [log] [blame]
Jonathan Hart584ea2d2016-10-11 10:49:16 +02001/*
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 */
16
17package org.onosproject.net.packet;
18
19/**
20 * Instantiable version of DefaultPacketContext for use in unit tests that need
21 * to provide a PacketContext as input data.
22 */
23public class PacketContextAdapter extends DefaultPacketContext {
24
25 public PacketContextAdapter(long time, InboundPacket inPkt,
26 OutboundPacket outPkt, boolean block) {
27 super(time, inPkt, outPkt, block);
28 }
29
30 @Override
31 public void send() {
32
33 }
34
35}