Update years in copyright line
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / AbstractReplyBuilder.java
1 /*
2  * Sone - AbstractReplyBuilder.java - Copyright © 2013–2015 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.data.impl;
19
20 import net.pterodactylus.sone.database.ReplyBuilder;
21
22 /**
23  * Abstract implementation of a {@link ReplyBuilder}.
24  *
25  * @param <B>
26  *            The interface implemented and exposed by the builder
27  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
28  */
29 public class AbstractReplyBuilder<B extends ReplyBuilder<B>> implements ReplyBuilder<B> {
30
31         /** Whether to use a random ID for the reply. */
32         protected boolean randomId;
33
34         /** The ID of the reply. */
35         protected String id;
36
37         /** The sender of the reply. */
38         protected String senderId;
39
40         /** Whether to use the current time when creating the reply. */
41         protected boolean currentTime;
42
43         /** The time of the reply. */
44         protected long time;
45
46         /** The text of the reply. */
47         protected String text;
48
49         /**
50          * {@inheritDoc}
51          */
52         @Override
53         @SuppressWarnings("unchecked")
54         public B randomId() {
55                 this.randomId = true;
56                 return (B) this;
57         }
58
59         /**
60          * {@inheritDoc}
61          */
62         @Override
63         @SuppressWarnings("unchecked")
64         public B withId(String id) {
65                 this.id = id;
66                 return (B) this;
67         }
68
69         /**
70          * {@inheritDoc}
71          */
72         @Override
73         @SuppressWarnings("unchecked")
74         public B from(String senderId) {
75                 this.senderId = senderId;
76                 return (B) this;
77         }
78
79         /**
80          * {@inheritDoc}
81          */
82         @Override
83         @SuppressWarnings("unchecked")
84         public B currentTime() {
85                 this.currentTime = true;
86                 return (B) this;
87         }
88
89         /**
90          * {@inheritDoc}
91          */
92         @Override
93         @SuppressWarnings("unchecked")
94         public B withTime(long time) {
95                 this.time = time;
96                 return (B) this;
97         }
98
99         /**
100          * {@inheritDoc}
101          */
102         @Override
103         @SuppressWarnings("unchecked")
104         public B withText(String text) {
105                 this.text = text;
106                 return (B) this;
107         }
108
109 }