blob: bf37acfabecc6846712141362e728960eb2af8ba [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;
HIGUCHI Yuta5be3e822016-05-03 13:51:42 -070019import com.google.common.annotations.Beta;
20
21/**
22 * OTU port (Optical channel Transport Unit).
23 * <p>
24 * See ITU G.709 "Interfaces for the Optical Transport Network (OTN)" and
25 * Open Networking Foundation "Optical Transport Protocol Extensions Version 1.0".
26 */
27@Beta
Yuta HIGUCHI1d547bf2016-08-02 21:44:48 -070028public interface OtuPort extends ProjectedPort {
HIGUCHI Yuta5be3e822016-05-03 13:51:42 -070029
30 /**
31 * Returns OTU signal type.
32 *
33 * @return OTU signal type
34 */
35 public OtuSignalType signalType();
36
37}