1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package com.buckosoft.BuckoVidLib.domain;
20
21
22
23
24
25 public class Actor {
26 private int id;
27 private String name;
28 private int plexId;
29 private String thumb;
30
31 public Actor(){}
32
33 public Actor(String name) {
34 this.name = name;
35 }
36
37 public void clone(Actor other) {
38 this.id = other.id;
39 this.name = other.name;
40 this.plexId = other.plexId;
41 this.thumb = other.thumb;
42 }
43
44
45
46 public int getId() {
47 return id;
48 }
49
50
51
52 public void setId(int id) {
53 this.id = id;
54 }
55
56
57
58 public String getName() {
59 return name;
60 }
61
62
63
64 public void setName(String name) {
65 this.name = name;
66 }
67
68
69
70 public int getPlexId() {
71 return plexId;
72 }
73
74
75
76 public void setPlexId(int plexId) {
77 this.plexId = plexId;
78 }
79
80
81
82 public String getThumb() {
83 return thumb;
84 }
85
86
87
88 public void setThumb(String thumb) {
89 this.thumb = thumb;
90 }
91
92
93 }