Add some shell creators.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / SoneShell.java
index 50b1189..49059c7 100644 (file)
@@ -33,6 +33,15 @@ import freenet.keys.FreenetURI;
  */
 public class SoneShell extends Sone implements Shell<Sone> {
 
+       /** The shell creator. */
+       public static final ShellCreator<Sone> creator = new ShellCreator<Sone>() {
+
+               @Override
+               public Shell<Sone> createShell() {
+                       return new SoneShell();
+               }
+       };
+
        /** A GUID for this Sone. */
        private UUID id;