blob: b8e150bc48d85c2f4accf9b6798b178b001a6f24 [file] [log] [blame]
Brian O'Connordee2e6b2014-08-12 11:34:51 -07001package net.onrc.onos.core.matchaction;
2
3import net.onrc.onos.api.batchoperation.BatchOperationEntry;
4
5public final class MatchActionOperationEntry
6 extends BatchOperationEntry<MatchActionOperations.Operator, MatchAction> {
7
8 /**
9 * Default constructor for serializer.
10 */
11 @SuppressWarnings("unused")
12 @Deprecated
13 protected MatchActionOperationEntry() {
14 super(null, null);
15 }
16
17 /**
18 * Constructs new instance for the entry of the BatchOperation.
19 *
20 * @param operator the operator of this operation
21 * @param target the target object of this operation
22 */
23 public MatchActionOperationEntry(final MatchActionOperations.Operator operator,
24 final MatchAction target) {
25 super(operator, target);
26 }
27}