Rename default post builder implementation.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 15 Oct 2013 04:14:35 +0000 (06:14 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 28 Feb 2014 21:25:25 +0000 (22:25 +0100)
src/main/java/net/pterodactylus/sone/data/impl/DefaultPostBuilder.java [new file with mode: 0644]
src/main/java/net/pterodactylus/sone/data/impl/DefaultPostBuilderFactory.java
src/main/java/net/pterodactylus/sone/data/impl/PostBuilderImpl.java [deleted file]

diff --git a/src/main/java/net/pterodactylus/sone/data/impl/DefaultPostBuilder.java b/src/main/java/net/pterodactylus/sone/data/impl/DefaultPostBuilder.java
new file mode 100644 (file)
index 0000000..bf1c1e7
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * Sone - PostBuilderImpl.java - Copyright © 2013 David Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.data.impl;
+
+import java.util.UUID;
+
+import net.pterodactylus.sone.data.Post;
+import net.pterodactylus.sone.database.PostBuilder;
+import net.pterodactylus.sone.database.SoneProvider;
+
+/**
+ * {@link PostBuilder} implementation that creates {@link PostImpl} objects.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class DefaultPostBuilder extends AbstractPostBuilder {
+
+       private final SoneProvider soneProvider;
+
+       /**
+        * Creates a new post builder.
+        *
+        * @param soneProvider
+        *              The Sone provider
+        */
+       public DefaultPostBuilder(SoneProvider soneProvider) {
+               this.soneProvider = soneProvider;
+       }
+
+       /** {@inheritDoc} */
+       @Override
+       public Post build() {
+               validate();
+               return new PostImpl(soneProvider, randomId ? UUID.randomUUID().toString() : id, senderId, recipientId, currentTime ? System.currentTimeMillis() : time, text);
+       }
+
+}
index 4df8897..72c4eb4 100644 (file)
@@ -25,7 +25,7 @@ import com.google.inject.Inject;
 
 /**
  * {@link PostBuilderFactory} implementation that creates
- * {@link PostBuilderImpl}s.
+ * {@link DefaultPostBuilder}s.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
@@ -50,7 +50,7 @@ public class DefaultPostBuilderFactory implements PostBuilderFactory {
         */
        @Override
        public PostBuilder newPostBuilder() {
-               return new PostBuilderImpl(soneProvider);
+               return new DefaultPostBuilder(soneProvider);
        }
 
 }
diff --git a/src/main/java/net/pterodactylus/sone/data/impl/PostBuilderImpl.java b/src/main/java/net/pterodactylus/sone/data/impl/PostBuilderImpl.java
deleted file mode 100644 (file)
index 6d5d70f..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Sone - PostBuilderImpl.java - Copyright © 2013 David Roden
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-package net.pterodactylus.sone.data.impl;
-
-import java.util.UUID;
-
-import net.pterodactylus.sone.data.Post;
-import net.pterodactylus.sone.database.PostBuilder;
-import net.pterodactylus.sone.database.SoneProvider;
-
-/**
- * {@link PostBuilder} implementation that creates {@link PostImpl} objects.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
- */
-public class PostBuilderImpl extends AbstractPostBuilder {
-
-       private final SoneProvider soneProvider;
-
-       /**
-        * Creates a new post builder.
-        *
-        * @param soneProvider
-        *              The Sone provider
-        */
-       public PostBuilderImpl(SoneProvider soneProvider) {
-               this.soneProvider = soneProvider;
-       }
-
-       /** {@inheritDoc} */
-       @Override
-       public Post build() {
-               validate();
-               return new PostImpl(soneProvider, randomId ? UUID.randomUUID().toString() : id, senderId, recipientId, currentTime ? System.currentTimeMillis() : time, text);
-       }
-
-}