blob: aea97639a7f442ccab3137218a96ce15faaf412a [file] [log] [blame]
/*
* Copyright 2017-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.openstacknetworkingui;
import com.fasterxml.jackson.databind.node.ObjectNode;
/**
* Service for OpenStack Networking UI.
*/
public interface OpenstackNetworkingUiService {
/**
* Sends message to OpenStack Networking UI.
*
* @param type event type
* @param payload payload
*/
void sendMessage(String type, ObjectNode payload);
/**
* Sets the REST server ip address.
*
* @param ipAddress rest server ip address
*/
void setRestServerIp(String ipAddress);
/**
* Gets the REST server url.
*
* @return REST server url
*/
String restServerUrl();
/**
* Sets the REST server authorization information.
*
* @param id id
* @param password password
*/
void setRestServerAuthInfo(String id, String password);
/**
* Gets the REST server authorization information.
*
* @return REST server authorization information as String
*/
String restServerAuthInfo();
}