blob: c5911ff21a5571630d00652ecc44a95e01e2182a [file] [log] [blame]
Bharat saraswale37f7f32015-10-26 15:50:22 +05301/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
Jonathan Hart317f4762015-11-09 16:05:36 -080016package org.onosproject.vtnrsc.flowclassifier;
Bharat saraswale37f7f32015-10-26 15:50:22 +053017
18import org.onosproject.vtnrsc.FlowClassifier;
19import org.onosproject.vtnrsc.FlowClassifierId;
20
21/**
22 * Provides Services for Flow Classifier.
23 */
24public interface FlowClassifierService {
25
26 /**
Mahesh Poojary Sfac02262015-11-20 19:13:22 +053027 * Check whether Flow Classifier is present based on given Flow Classifier
28 * Id.
29 *
30 * @param id flow classifier identifier
31 * @return true if flow classifier is present otherwise return false
32 */
33 boolean exists(FlowClassifierId id);
34
35 /**
36 * Returns the number of flow classifiers known to the system.
37 *
38 * @return number of flow classifiers
39 */
40 int getFlowClassifierCount();
41
42 /**
Bharat saraswale37f7f32015-10-26 15:50:22 +053043 * Store Flow Classifier.
44 *
Mahesh Poojary Sfac02262015-11-20 19:13:22 +053045 * @param flowClassifier flow classifier
46 * @return true if adding flow classifier into store is success otherwise
47 * return false
Bharat saraswale37f7f32015-10-26 15:50:22 +053048 */
49 boolean createFlowClassifier(FlowClassifier flowClassifier);
50
51 /**
52 * Return the existing collection of Flow Classifier.
53 *
Mahesh Poojary Sfac02262015-11-20 19:13:22 +053054 * @return flow classifier collections
Bharat saraswale37f7f32015-10-26 15:50:22 +053055 */
56 Iterable<FlowClassifier> getFlowClassifiers();
57
58 /**
Bharat saraswale37f7f32015-10-26 15:50:22 +053059 * Retrieve the Flow Classifier based on given Flow Classifier id.
60 *
Mahesh Poojary Sfac02262015-11-20 19:13:22 +053061 * @param id flow classifier identifier
62 * @return flow classifier if present otherwise returns null
Bharat saraswale37f7f32015-10-26 15:50:22 +053063 */
64 FlowClassifier getFlowClassifier(FlowClassifierId id);
65
66 /**
67 * Update Flow Classifier based on given Flow Classifier Id.
68 *
Mahesh Poojary Sfac02262015-11-20 19:13:22 +053069 * @param flowClassifier flow classifier
70 * @return true if flow classifier update is success otherwise return false
Bharat saraswale37f7f32015-10-26 15:50:22 +053071 */
72 boolean updateFlowClassifier(FlowClassifier flowClassifier);
73
74 /**
75 * Remove Flow Classifier from store based on given Flow Classifier Id.
76 *
Mahesh Poojary Sfac02262015-11-20 19:13:22 +053077 * @param id flow classifier identifier
78 * @return true if flow classifier removal is success otherwise return
79 * false
Bharat saraswale37f7f32015-10-26 15:50:22 +053080 */
81 boolean removeFlowClassifier(FlowClassifierId id);
Jonathan Hart317f4762015-11-09 16:05:36 -080082}