blob: 35428f46a902b4a2820204e6d91d336c6d6c44c0 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 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
Ray Milkeyc4dd7262015-08-21 09:33:42 -070022@Deprecated
Brian O'Connor72cb19a2015-01-16 16:14:41 -080023/**
24 * Class used with the flow subsystem to process per device
25 * batches.
Ray Milkeyc4dd7262015-08-21 09:33:42 -070026 *
27 * @deprecated in Drake release - no longer a public API
Brian O'Connor72cb19a2015-01-16 16:14:41 -080028 */
alshabib902d41b2014-10-07 16:52:05 -070029public class FlowRuleBatchOperation
30 extends BatchOperation<FlowRuleBatchEntry> {
31
Brian O'Connor72cb19a2015-01-16 16:14:41 -080032 /**
33 * This id is used to cary to id of the original
34 * FlowOperations and track where this batch operation
35 * came from. The id is unique cluster wide.
36 */
37 private final long id;
38 private final DeviceId deviceId;
39
40 public FlowRuleBatchOperation(Collection<FlowRuleBatchEntry> operations,
41 DeviceId deviceId, long flowOperationId) {
alshabib902d41b2014-10-07 16:52:05 -070042 super(operations);
Brian O'Connor72cb19a2015-01-16 16:14:41 -080043 this.id = flowOperationId;
44 this.deviceId = deviceId;
45 }
46
47 public DeviceId deviceId() {
48 return this.deviceId;
49 }
50
51 public long id() {
52 return id;
alshabib902d41b2014-10-07 16:52:05 -070053 }
54}