blob: eeb3c0128276ac1cb4b614422f38511e242c7612 [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 */
16package org.onosproject.net.behaviour;
17
18import org.onosproject.net.driver.HandlerBehaviour;
19
20/**
21 * Device behaviour to obtain and set parameters of PON links in vOLT.
22 */
23public interface VoltPonLinkConfig extends HandlerBehaviour {
24
25 /**
26 * Obtain all GPON PON links or a specific PON link in the device.
27 *
28 * @param target input data in string
29 * @return response string
30 */
31 String getPonLinks(String target);
32
33 /**
34 * Set a parameter value of PON link in the device.
35 *
36 * @param target input data in string
37 *
38 */
39 void setPonLink(String target);
40
41}