blob: b38d037aae7d983c958736e6234fe1955b4d9c1f [file] [log] [blame]
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -07003 *
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.net.optical;
17
18import org.onosproject.net.CltSignalType;
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -070019import com.google.common.annotations.Beta;
20
21/**
22 * ODU client port (Optical channel Data Unit).
23 * Also referred to as a T-port or wide band port.
24 * See ITU G.709 "Interfaces for the Optical Transport Network (OTN)"
25 */
26@Beta
Yuta HIGUCHI1d547bf2016-08-02 21:44:48 -070027public interface OduCltPort extends ProjectedPort {
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -070028
29 /**
30 * Returns ODU client signal type.
31 *
32 * @return ODU client signal type
33 */
34 CltSignalType signalType();
35}