blob: 8c1aad9f40de4616ff3743df32a0b06fefbe1faf [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 an EXPRESS connection.
24 *
25 */
26public class OpenRoadmExpressConnection extends OpenRoadmConnection {
27
28 /**
29 * Constructor for an Express connection (from line port to line port).
30 *
31 * @param openRoadmName name of the Connection.
32 * @param xc the associated OpenRoadmFlowRule.
33 * @param deviceService ONOS device service.
34 */
35 public OpenRoadmExpressConnection(String openRoadmName, OpenRoadmFlowRule xc,
36 DeviceService deviceService) {
37 super(openRoadmName, xc, deviceService);
38 }
39}