blob: e13acd72752b661e73d3cf5fe795ea8638df101a [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'Connor72cb19a2015-01-16 16:14:41 -080018import org.onosproject.net.DeviceId;
19
alshabib902d41b2014-10-07 16:52:05 -070020import java.util.Collection;
21
Brian O'Connor72cb19a2015-01-16 16:14:41 -080022/**
23 * Class used with the flow subsystem to process per device
24 * batches.
25 */
alshabib902d41b2014-10-07 16:52:05 -070026public class FlowRuleBatchOperation
27 extends BatchOperation<FlowRuleBatchEntry> {
28
Brian O'Connor72cb19a2015-01-16 16:14:41 -080029 /**
30 * This id is used to cary to id of the original
31 * FlowOperations and track where this batch operation
32 * came from. The id is unique cluster wide.
33 */
34 private final long id;
35 private final DeviceId deviceId;
36
37 public FlowRuleBatchOperation(Collection<FlowRuleBatchEntry> operations,
38 DeviceId deviceId, long flowOperationId) {
alshabib902d41b2014-10-07 16:52:05 -070039 super(operations);
Brian O'Connor72cb19a2015-01-16 16:14:41 -080040 this.id = flowOperationId;
41 this.deviceId = deviceId;
42 }
43
44 public DeviceId deviceId() {
45 return this.deviceId;
46 }
47
48 public long id() {
49 return id;
alshabib902d41b2014-10-07 16:52:05 -070050 }
51}