blob: c17f0d925a20132b305020b89159c39d96f8966b [file] [log] [blame]
Yoonseon Hanc70b4e02016-10-20 15:24:33 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Yoonseon Hanc70b4e02016-10-20 15:24:33 -07003 *
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 */
16
17package org.onosproject.incubator.net.virtual.provider;
18
19import org.onosproject.net.ConnectPoint;
20import org.onosproject.net.Path;
21
22/**
23 * Abstraction of an embedding algorithm used for embedding virtual objects
24 * into the underlying physical network.
25 */
26public interface InternalRoutingAlgorithm {
27 /**
28 * Find a route between two connect points (i.e. ports)
29 * according to the own logic.
30 *
31 * @param src A start point
32 * @param dst A sink point
33 * @return The path between src and dst calculated from the algorithm
34 */
35 Path findPath(ConnectPoint src, ConnectPoint dst);
36}