Added more ignorable files to .gitignore
[ovsdb.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / lib / message / MonitorSelect.java
1 /*
2  * Copyright (C) 2013 EBay Software Foundation
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  * Authors : Ashwin Raveendran, Madhu Venugopal
9  */
10 package org.opendaylight.ovsdb.lib.message;
11
12 public class MonitorSelect {
13
14     boolean inital;
15     boolean insert;
16     boolean delete;
17     boolean modify;
18
19     public boolean isInital() {
20         return inital;
21     }
22
23     public void setInital(boolean inital) {
24         this.inital = inital;
25     }
26
27     public boolean isInsert() {
28         return insert;
29     }
30
31     public void setInsert(boolean insert) {
32         this.insert = insert;
33     }
34
35     public boolean isDelete() {
36         return delete;
37     }
38
39     public void setDelete(boolean delete) {
40         this.delete = delete;
41     }
42
43     public boolean isModify() {
44         return modify;
45     }
46
47     public void setModify(boolean modify) {
48         this.modify = modify;
49     }
50 }