Add builder for post replies.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / PostReplyBuilder.java
1 /*
2  * Sone - PostReplyBuilder.java - Copyright © 2013 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;
19
20 /**
21  * Builder for a {@link PostReply} object.
22  *
23  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
24  */
25 public interface PostReplyBuilder extends ReplyBuilder<PostReplyBuilder> {
26
27         /**
28          * Configures this builder to set the given post as post the created reply
29          * refers to.
30          *
31          * @param post
32          *            The post the reply refers to
33          * @return This builder
34          */
35         public PostReplyBuilder to(Post post);
36
37         /**
38          * Verifies the configuration of this builder and creates a new post reply.
39          * <p>
40          * The following conditions must be met in order for the configuration to be
41          * considered valid:
42          * <ul>
43          * <li>Exactly one of {@link #randomId()} or {@link #withId(String)} must
44          * have been called.</li>
45          * <li>The {@link #from(Sone) sender} must not be {@code null}.</li>
46          * <li>Exactly one of {@link #currentTime()} or {@link #withTime(long)} must
47          * have been called.</li>
48          * <li>The {@link #withText(String) text} must not be {@code null} and must
49          * contain something other than whitespace.</li>
50          * <li>The {@link #to(Post) post} have been set.</li>
51          * </ul>
52          *
53          * @return The created post reply
54          * @throws IllegalStateException
55          *             if this builder’s configuration is not valid
56          */
57         public PostReply build() throws IllegalStateException;
58
59 }