Changed the current WIP Pipeline Orchestrator to a more simplified Static Pipeline...
[ovsdb.git] / openstack / net-virt-providers / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / providers / openflow13 / PipelineOrchestrator.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Authors : Dave Tucker, Madhu Venugopal
9  */
10
11 package org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13;
12
13 /**
14  * A PipelineOrchestrator provides the necessary orchestration logic to allow multiple network services
15  * to share a common OpenFlow 1.3 based multi-table pipeline.
16  */
17 public interface PipelineOrchestrator {
18     void registerService(Service service, AbstractServiceInstance serviceInstance);
19     void unregisterService(Service service);
20     public Service getNextServiceInPipeline(Service service);
21     AbstractServiceInstance getServiceInstance(Service service);
22 }