8
8
@ JsonIgnoreProperties (ignoreUnknown = true )
9
9
public class View implements Serializable {
10
10
11
- <<<<<<< HEAD
12
- private static final long serialVersionUID = 1L ;
13
- =======
14
11
private static final long serialVersionUID = 8162172428393948830L ;
15
12
16
- >>>>>>> 954 b71b ... Add basic View support - List the Views ; List the tickets in a View
17
13
private long id ;
18
14
private String title ;
19
15
private boolean active ;
@@ -23,10 +19,6 @@ public class View implements Serializable {
23
19
private String description ;
24
20
private Conditions conditions ;
25
21
private boolean watchable ;
26
- <<<<<<< HEAD
27
- private String rawTitle ;
28
- =======
29
- >>>>>>> 954 b71b ... Add basic View support - List the Views ; List the tickets in a View
30
22
31
23
public void setId (long id ) {
32
24
this .id = id ;
@@ -109,19 +101,6 @@ public boolean getWatchable() {
109
101
return this .watchable ;
110
102
}
111
103
112
- <<<<<<< HEAD
113
- public void setRawTitle (String rawTitle ) {
114
- this .rawTitle = rawTitle ;
115
- }
116
-
117
- @ JsonProperty ("raw_title" )
118
- public String getRawTitle () {
119
- return this .rawTitle ;
120
- }
121
-
122
- =======
123
- >>>>>>> 954 b71b ... Add basic View support - List the Views ; List the tickets in a View
124
- //TODO: fix this.
125
104
public String toString () {
126
105
return "View " +
127
106
"{id=" + id +
@@ -133,10 +112,6 @@ public String toString() {
133
112
", description=" + description +
134
113
", conditions=" + conditions +
135
114
", watchable=" + watchable +
136
- <<<<<<< HEAD
137
- ", rawTitle=" + rawTitle +
138
- =======
139
- >>>>>>> 954 b71b ... Add basic View support - List the Views ; List the tickets in a View
140
115
"}" ;
141
116
}
142
117
}
0 commit comments