eb9b57e26a959b4ea2e5fb563271fa3a5a55b89b
[chesshog.git] / chesshog-db-etude / src / main / java / org / hedgecode / chess / dto / AuthorDTO.java
1 /*
2  * Copyright (c) 2018. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.dto;
18
19 import java.util.Date;
20
21 /**
22  *
23  *
24  * @author Dmitry Samoshin aka gotty
25  */
26 public class AuthorDTO {
27
28     /**
29      *
30      */
31     private Long id;
32
33     public Long getId() {
34         return id;
35     }
36
37     public void setId(Long id) {
38         this.id = id;
39     }
40
41     /**
42      *
43      */
44     private String name;
45
46     public String getName() {
47         return name;
48     }
49
50     public void setName(String name) {
51         this.name = name;
52     }
53
54     /**
55      *
56      */
57     private Date birthdate;
58
59     public Date getBirthdate() {
60         return birthdate;
61     }
62
63     public void setBirthdate(Date birthdate) {
64         this.birthdate = birthdate;
65     }
66
67     /**
68      *
69      */
70     private Date deathdate;
71
72     public Date getDeathdate() {
73         return deathdate;
74     }
75
76     public void setDeathdate(Date deathdate) {
77         this.deathdate = deathdate;
78     }
79
80     /**
81      *
82      */
83     private String biography;
84
85     public String getBiography() {
86         return biography;
87     }
88
89     public void setBiography(String biography) {
90         this.biography = biography;
91     }
92
93     /**
94      *
95      */
96     private String comment;
97
98     public String getComment() {
99         return comment;
100     }
101
102     public void setComment(String comment) {
103         this.comment = comment;
104     }
105
106 }