blob: 60cdbb25d8eaf7351e79ab2ce139bcec8cbfb67a [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/**
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090022 * Device behaviour to perform actions in an ONU in vOLT.
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090023 */
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090024@Beta
25public interface VoltOnuOperConfig extends HandlerBehaviour {
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090026
27 /**
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090028 * Reboot an ONU in the device.
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090029 *
30 * @param target input data in string
Ray Milkeybb23e0b2016-08-02 17:00:21 -070031 * @return response string
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090032 */
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090033 String rebootOnu(String target);
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090034
35 /**
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090036 * Operate/release loopback on Ethernet port an ONU in the device.
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090037 *
38 * @param target input data in string
Ray Milkeybb23e0b2016-08-02 17:00:21 -070039 * @return response string
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090040 */
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090041 String loopbackEthOnu(String target);
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090042
43}