blob: e843818f1d17653cd0bdeffdac6199ffa598bffa [file] [log] [blame]
Thomas Vachuskaca88bb72015-04-08 19:38:02 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuskaca88bb72015-04-08 19:38:02 -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 */
16package org.onosproject.net.behaviour;
17
18import org.onlab.osgi.ServiceDirectory;
alshabib2a441c62015-04-13 18:39:38 -070019import org.onosproject.net.flowobjective.FlowObjectiveStore;
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070020
21/**
22 * Processing context and supporting services for the pipeline behaviour.
23 */
24public interface PipelinerContext {
25
26 /**
27 * Returns the service directory which can be used to obtain references
28 * to various supporting services.
29 *
30 * @return service directory
31 */
32 ServiceDirectory directory();
33
alshabib2a441c62015-04-13 18:39:38 -070034 /**
35 * Returns the Objective Store where data can be stored and retrieved.
36 * @return the flow objective store
37 */
38 FlowObjectiveStore store();
39
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070040 // TODO: add means to store and access shared state
41}