blob: 15f284d4255ba7a613eff7ca697c3c22fd845f3a [file] [log] [blame]
HIGUCHI Yuta5be3e822016-05-03 13:51:42 -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 gcd ~/Dooverning permissions and
14 * limitations under the License.
15 */
16package org.onosproject.net.optical;
17
18import org.onosproject.net.OtuSignalType;
19import org.onosproject.net.Port;
20
21import com.google.common.annotations.Beta;
22
23/**
24 * OTU port (Optical channel Transport Unit).
25 * <p>
26 * See ITU G.709 "Interfaces for the Optical Transport Network (OTN)" and
27 * Open Networking Foundation "Optical Transport Protocol Extensions Version 1.0".
28 */
29@Beta
30public interface OtuPort extends Port {
31
32 /**
33 * Returns OTU signal type.
34 *
35 * @return OTU signal type
36 */
37 public OtuSignalType signalType();
38
39}