Added more ignorable files to .gitignore
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / table / Queue.java
1 /*
2  * [[ Authors will Fill in the Copyright header ]]
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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
9  */
10 package org.opendaylight.ovsdb.lib.table;
11
12
13 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
14 import org.opendaylight.ovsdb.lib.notation.OvsDBSet;
15
16 import com.fasterxml.jackson.annotation.JsonIgnore;
17
18 public class Queue extends Table<Queue> {
19
20     public static final Name<Queue> NAME = new Name<Queue>("Queue") {};
21
22     private OvsDBSet<Integer> dscp;
23     private OvsDBMap<String, String> other_config;
24     private OvsDBMap<String, String> external_ids;
25
26     public Queue() {
27     }
28
29     public OvsDBSet<Integer> getDscp() {
30         return dscp;
31     }
32
33     public void setDscp(OvsDBSet<Integer> dscp) {
34         this.dscp = dscp;
35     }
36
37     public OvsDBMap<String, String> getOther_config() {
38         return other_config;
39     }
40
41     public void setOther_config(OvsDBMap<String, String> other_config) {
42         this.other_config = other_config;
43     }
44
45     public OvsDBMap<String, String> getExternal_ids() {
46         return external_ids;
47     }
48
49     public void setExternal_ids(OvsDBMap<String, String> external_ids) {
50         this.external_ids = external_ids;
51     }
52
53     @Override
54     @JsonIgnore
55     public Name<Queue> getTableName() {
56         return NAME;
57     }
58
59     @Override
60     public String toString() {
61         return "Queue [dscp=" + dscp + ", other_config=" + other_config
62                 + ", external_ids=" + external_ids + "]";
63     }
64
65     public enum Column implements org.opendaylight.ovsdb.lib.table.Column<Queue> {
66         dscp,
67         other_config,
68         external_ids}
69 }