blob: e1b795ae76743a0a91ef8db97eabde7d6f702b09 [file] [log] [blame]
/*
* Copyright 2020-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.kubevirtnode.api;
/**
* Service handling KubeVirt node state.
*/
public interface KubevirtNodeHandler {
/**
* Processes the given node for init state.
* It creates required bridges on OVS by referring to node type.
*
* @param node kubevirt node
*/
void processInitState(KubevirtNode node);
/**
* Processes the given node for device created state.
* It creates required ports on the bridges based on the node type.
*
* @param node kubevirt node
*/
void processDeviceCreatedState(KubevirtNode node);
/**
* Processes the given node for complete state.
* It performs post-init jobs for the complete node.
*
* @param node kubevirt node
*/
void processCompleteState(KubevirtNode node);
/**
* Processes the given node for incomplete state.
*
* @param node kubevirt node
*/
void processIncompleteState(KubevirtNode node);
/**
* Processes the given node for on boarded state.
*
* @param node kubevirt node
*/
void processOnBoardedState(KubevirtNode node);
}