Make the update time of a Sone final, set it in the Sone builder.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / SoneBuilder.java
index d2047af..5ad9bcc 100644 (file)
@@ -13,6 +13,8 @@ public interface SoneBuilder {
        SoneBuilder from(Identity identity);
        SoneBuilder local();
 
+       SoneBuilder lastUpdated(long lastUpdated);
+
        Sone build() throws IllegalStateException;
 
 }