blob: 5e115f17d9ea7430d204fcae739b1f456e201dc9 [file] [log] [blame]
Akihiro Yamanouchid4912842016-07-01 10:38:46 +09001/*
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 */
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090016package org.onosproject.drivers.fujitsu.behaviour;
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090017
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090018import com.google.common.annotations.Beta;
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090019import org.onosproject.net.driver.HandlerBehaviour;
20
21/**
22 * Device behaviour to obtain and set parameters of PON links in vOLT.
23 */
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090024@Beta
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090025public interface VoltPonLinkConfig extends HandlerBehaviour {
26
27 /**
28 * Obtain all GPON PON links or a specific PON link in the device.
29 *
30 * @param target input data in string
31 * @return response string
32 */
33 String getPonLinks(String target);
34
35 /**
36 * Set a parameter value of PON link in the device.
37 *
38 * @param target input data in string
xueliang714dd2b2016-09-13 16:43:32 +090039 * @return true if the operation is successful
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090040 */
xueliang714dd2b2016-09-13 16:43:32 +090041 boolean setPonLink(String target);
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090042
43}