blob: a82d60e0b2055e72b2a1b2000a09a41321f77d74 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.flow;
alshabib902d41b2014-10-07 16:52:05 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.net.flow.FlowRuleBatchEntry.FlowRuleOperation;
alshabib902d41b2014-10-07 16:52:05 -070019
20
21public class FlowRuleBatchEntry
22 extends BatchOperationEntry<FlowRuleOperation, FlowRule> {
23
Brian O'Connor427a1762014-11-19 18:40:32 -080024 private final Long id; // FIXME: consider using Optional<Long>
25
alshabib902d41b2014-10-07 16:52:05 -070026 public FlowRuleBatchEntry(FlowRuleOperation operator, FlowRule target) {
27 super(operator, target);
Brian O'Connor427a1762014-11-19 18:40:32 -080028 this.id = null;
29 }
30
31 public FlowRuleBatchEntry(FlowRuleOperation operator, FlowRule target, Long id) {
32 super(operator, target);
33 this.id = id;
34 }
35
36 public Long id() {
37 return id;
alshabib902d41b2014-10-07 16:52:05 -070038 }
39
40 public enum FlowRuleOperation {
41 ADD,
42 REMOVE,
43 MODIFY
44 }
45
46}