-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathCheckItem.java
More file actions
45 lines (34 loc) · 886 Bytes
/
CheckItem.java
File metadata and controls
45 lines (34 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.julienvey.trello.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.julienvey.trello.impl.domaininternal.CheckItemState;
@JsonIgnoreProperties(ignoreUnknown = true)
public class CheckItem {
private CheckItemState state = CheckItemState.INCOMPLETE;
private String id;
private String name;
private int pos;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPos() {
return pos;
}
public void setPos(int pos) {
this.pos = pos;
}
public CheckItemState getState() {
return state;
}
public void setState(CheckItemState state) {
this.state = state;
}
}