Switch from Felix to config-driven dependencies
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / message / MonitorSelect.java
1 /*
2  * Copyright (c) 2013, 2015 EBay Software Foundation and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.ovsdb.lib.message;
10
11 public class MonitorSelect {
12
13     boolean initial;
14     boolean insert;
15     boolean delete;
16     boolean modify;
17
18     public MonitorSelect(boolean initial, boolean insert, boolean delete, boolean modify) {
19         this.initial = initial;
20         this.insert = insert;
21         this.delete = delete;
22         this.modify = modify;
23     }
24
25     public MonitorSelect() {
26     }
27
28     public boolean isInitial() {
29         return initial;
30     }
31
32     public void setInitial(boolean initial) {
33         this.initial = initial;
34     }
35
36     public boolean isInsert() {
37         return insert;
38     }
39
40     public void setInsert(boolean insert) {
41         this.insert = insert;
42     }
43
44     public boolean isDelete() {
45         return delete;
46     }
47
48     public void setDelete(boolean delete) {
49         this.delete = delete;
50     }
51
52     public boolean isModify() {
53         return modify;
54     }
55
56     public void setModify(boolean modify) {
57         this.modify = modify;
58     }
59 }