blob: 996d5ca91bd394180a9e964116e2d72498d5057b [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
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090031 */
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090032 String rebootOnu(String target);
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090033
34 /**
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090035 * Operate/release loopback on Ethernet port an ONU in the device.
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090036 *
37 * @param target input data in string
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090038 */
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090039 String loopbackEthOnu(String target);
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090040
41}