Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / main / java / org / wamblee / security / authorization / AuthorizationResult.java
index 1756bde47728a048feade5fc5ab13bfc5b26b819..19d2699196ab0c21d78a8f8d99a57d8994c55941 100644 (file)
@@ -17,23 +17,23 @@ package org.wamblee.security.authorization;
 
 /**
  * Represents the result of an authorization decision.
- *
+ * 
  * @author Erik Brakkee
  */
 public enum AuthorizationResult {
-/**
+    /**
      * Access is granted.
      */
     GRANTED,
-/**
+    /**
      * Access is denied.
      */
     DENIED,
-/**
+    /**
      * Access is undecided.
      */
     UNDECIDED,
-/**
+    /**
      * Unsupported resource.
      */
     UNSUPPORTED_RESOURCE;