blob: ad9335947429eacd2535762dda1f094058cd3f42 [file] [log] [blame]
Ramon Casellas99c16252019-05-31 14:29:00 +02001/*
2 * Copyright 2018-present Open Networking Foundation
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 * This work was partially supported by EC H2020 project METRO-HAUL (761727).
17 */
18package org.onosproject.drivers.odtn.openroadm;
19
20import org.onosproject.net.device.DeviceService;
21
22/**
23 * Class that models a DROP connection.
24 *
25 */
26public class OpenRoadmDropConnection extends OpenRoadmConnection {
27
28 /**
29 * Constructor for a Drop Connection (from a line to a client port).
30 *
31 * @param openRoadmName name given to the connection.
32 * @param xc cross-connection
33 * @param deviceService ONOS device service.
34 */
35 public OpenRoadmDropConnection(String openRoadmName, OpenRoadmFlowRule xc,
36 DeviceService deviceService) {
37 super(openRoadmName, xc, deviceService);
38 }
39}