simplify creation of payload input stream
[jSite2.git] / src / net / pterodactylus / util / fcp / Verbosity.java
index 831a8cd..d536914 100644 (file)
@@ -11,7 +11,7 @@ package net.pterodactylus.util.fcp;
  * {@link #PROGRESS} and {@link #COMPRESSION} are single bits in that mask and
  * can be combined into a new verbosity using {@link #add(Verbosity)}.
  * 
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
  * @version $Id$
  */
 public class Verbosity {
@@ -25,6 +25,9 @@ public class Verbosity {
        /** Constant for compression message verbosity. */
        public static final Verbosity COMPRESSION = new Verbosity(512);
 
+       /** Constant for all events. */
+       public static final Verbosity ALL = new Verbosity(-1);
+
        /** The verbosity level. */
        private final int level;