Added more ignorable files to .gitignore
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / table / Manager.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 import com.fasterxml.jackson.annotation.JsonIgnore;
13
14 public class Manager  extends Table<Manager> {
15
16     public static final Name<Manager> NAME = new Name<Manager>("Manager") {};
17     private String target;
18
19     public String getTarget() {
20         return target;
21     }
22
23     public void setTarget(String target) {
24         this.target = target;
25     }
26
27     @Override
28     @JsonIgnore
29     public Name<Manager> getTableName() {
30         return NAME;
31     }
32
33     @Override
34     public String toString() {
35         return "Manager [target=" + target + "]";
36     }
37 }