blob: b4342f401c4a77cb7ef33ed28a6c682db8c01cae [file] [log] [blame]
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -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.net.optical;
17
18import org.onosproject.net.CltSignalType;
19import org.onosproject.net.Port;
20
21import com.google.common.annotations.Beta;
22
23/**
24 * ODU client port (Optical channel Data Unit).
25 * Also referred to as a T-port or wide band port.
26 * See ITU G.709 "Interfaces for the Optical Transport Network (OTN)"
27 */
28@Beta
29public interface OduCltPort extends Port {
30
31 /**
32 * Returns ODU client signal type.
33 *
34 * @return ODU client signal type
35 */
36 CltSignalType signalType();
37}