forked from jooby-project/jooby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPet.java
More file actions
69 lines (48 loc) · 1.01 KB
/
Pet.java
File metadata and controls
69 lines (48 loc) · 1.01 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package apps;
import java.util.List;
public class Pet {
private Long id;
private String name;
private Category category;
private List<String> photoUrls;
private List<Tag> tags;
private Status status;
public Pet() {
}
public String getName() {
return name;
}
public void setName(final String name) {
this.name = name;
}
public Long getId() {
return id;
}
public void setId(final Long id) {
this.id = id;
}
public Category getCategory() {
return category;
}
public void setCategory(final Category category) {
this.category = category;
}
public List<String> getPhotoUrls() {
return photoUrls;
}
public void setPhotoUrls(final List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public List<Tag> getTags() {
return tags;
}
public void setTags(final List<Tag> tags) {
this.tags = tags;
}
public Status getStatus() {
return status;
}
public void setStatus(final Status status) {
this.status = status;
}
}