blob: 173f7237196a2d6b24f92c7e73d80a93297becc7 [file] [log] [blame]
/*
* Copyright 2016-present Open Networking Laboratory
*
* 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.opencord.cordvtn.api.net;
import java.util.Set;
/**
* Service for interacting with the inventory of {@link ServiceNetwork} and
* {@link ServicePort}.
*/
public interface ServiceNetworkService {
/**
* Returns the service network with the supplied network ID.
*
* @param netId network id
* @return service network
*/
ServiceNetwork serviceNetwork(NetworkId netId);
/**
* Returns all service networks registered in the service.
*
* @return set of service networks
*/
Set<ServiceNetwork> serviceNetworks();
/**
* Returns the service port with the supplied port ID.
*
* @param portId port id
* @return service port
*/
ServicePort servicePort(PortId portId);
/**
* Returns all service ports registered in the service.
*
* @return set of service ports
*/
Set<ServicePort> servicePorts();
}