(no commit message)
[utils] / security / usermgt / src / main / java / org / wamblee / security / authentication / UserSet.java
index 7e6f9721e69134bbd41003f6d91ece3e0f1a5ddf..cbe216d930abd4ba9bc7702a6775849804995410 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.security.authentication;
 
 import java.util.Set;
@@ -38,8 +38,7 @@ public interface UserSet {
      * @throws UserMgtException
      *             In case the user cannot be created.
      */
-    User createUser(String aUsername, String aPassword)
-        throws UserMgtException;
+    User createUser(String aUsername, String aPassword) throws UserMgtException;
 
     /**
      * Must be called whenever a user object has been modified to notify the
@@ -81,9 +80,10 @@ public interface UserSet {
     boolean add(User aUser);
 
     /**
-     * Removes a user. 
-     *  
-     * @param aUser User to remove
+     * Removes a user.
+     * 
+     * @param aUser
+     *            User to remove
      * @return True iff user was removed.
      * 
      */
@@ -110,9 +110,9 @@ public interface UserSet {
      * @return The number of users.
      */
     int size();
-    
+
     /**
-     * Clears the user cache. 
+     * Clears the user cache.
      */
     void clearCache();
 }