(no commit message)
authorErik Brakkee <erik@brakkee.org>
Mon, 5 Jul 2010 10:38:20 +0000 (10:38 +0000)
committerErik Brakkee <erik@brakkee.org>
Mon, 5 Jul 2010 10:38:20 +0000 (10:38 +0000)
security/usermgt/src/main/java/org/wamblee/security/authentication/AbstractUserSet.java
security/usermgt/src/main/java/org/wamblee/security/authentication/InMemoryUserSet.java
security/usermgt/src/main/java/org/wamblee/security/authentication/Md5HexMessageDigester.java [new file with mode: 0644]
security/usermgt/src/main/java/org/wamblee/security/authentication/MessageDigester.java [new file with mode: 0644]
security/usermgt/src/main/java/org/wamblee/security/authentication/User.java
security/usermgt/src/main/java/org/wamblee/security/authentication/package-info.java [new file with mode: 0644]

index e629d0bbb4e1fa32ac82fb2d3aa61e5382990956..04f59edcf2970bb5adda818bbaae5bb495a32ee6 100644 (file)
@@ -15,7 +15,6 @@
  */ 
 package org.wamblee.security.authentication;
 
-import org.wamblee.security.encryption.MessageDigester;
 
 import static org.wamblee.security.authentication.UserMgtException.Reason.*;
 
index 59129213a4837ad41d8b04f55f253a73c750aadf..5988b40bab70f7ecf0ad09a2d5e6e556b34edf4c 100644 (file)
@@ -15,7 +15,6 @@
  */ 
 package org.wamblee.security.authentication;
 
-import org.wamblee.security.encryption.MessageDigester;
 
 import java.util.Set;
 import java.util.TreeSet;
diff --git a/security/usermgt/src/main/java/org/wamblee/security/authentication/Md5HexMessageDigester.java b/security/usermgt/src/main/java/org/wamblee/security/authentication/Md5HexMessageDigester.java
new file mode 100644 (file)
index 0000000..b992f5d
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2005-2010 the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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 org.apache.commons.codec.binary.Hex;
+
+import java.security.MessageDigest;
+import java.security.NoSuchAlgorithmException;
+
+/**
+ * MD5 Hex encoder.
+ * 
+ * @author Erik Brakkee
+ */
+public class Md5HexMessageDigester implements MessageDigester {
+    /**
+     * Constructs the message digester.
+     * 
+     */
+    public Md5HexMessageDigester() {
+        // Empty
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.wamblee.security.MessageDigester#hash(java.lang.String)
+     */
+    public String hash(String aValue) {
+        try {
+            MessageDigest digest = MessageDigest.getInstance("MD5");
+            byte[] result = digest.digest(aValue.getBytes());
+            char[] charResult = Hex.encodeHex(result);
+
+            return new String(charResult);
+        } catch (NoSuchAlgorithmException e) {
+            throw new IllegalArgumentException("MD5 not supported????");
+        }
+    }
+}
diff --git a/security/usermgt/src/main/java/org/wamblee/security/authentication/MessageDigester.java b/security/usermgt/src/main/java/org/wamblee/security/authentication/MessageDigester.java
new file mode 100644 (file)
index 0000000..6e3b1f0
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2005-2010 the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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;
+
+/**
+ * Utility class that encapsulates a message digest method.
+ */
+public interface MessageDigester {
+    /**
+     * Computes a message digest for a value and encodes it in some way.
+     * 
+     * @param aValue
+     *            Value to compute digest for.
+     * 
+     * @return Encoded digest.
+     */
+    String hash(String aValue);
+}
index 12db71a3de98ebf65d1e29ac3718032aa0194a59..997748324bddb32515fe174f92b9f2aa2f7ac02c 100644 (file)
@@ -35,7 +35,6 @@ import javax.persistence.Transient;
 import javax.persistence.Version;
 
 import org.wamblee.security.authentication.UserMgtException.Reason;
-import org.wamblee.security.encryption.MessageDigester;
 
 /**
  * Represents a user. The methods for managing the groups of the user have
diff --git a/security/usermgt/src/main/java/org/wamblee/security/authentication/package-info.java b/security/usermgt/src/main/java/org/wamblee/security/authentication/package-info.java
new file mode 100644 (file)
index 0000000..950c859
--- /dev/null
@@ -0,0 +1,77 @@
+/*
+ * Copyright 2005-2010 the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.
+ */ 
+/**
+ * This package provides support for managing users and their authentication. 
+ * 
+ * <h1>Supported use cases</h1>
+ * 
+ * in particular, it supports the following use cases: 
+ * <ul>
+ *   <li> Dynamically manage users and groups from an application. 
+ *   </li>
+ *   <li> Authenticate users
+ *   </li>
+ *   <li> Store users and groups in a database. 
+ *   </li>    
+ * </ul> 
+ * 
+ * An overview is given below: 
+ * <br/>
+ * <img src="doc-files/Class_Diagram__org.wamblee.security.authentication__main.jpg" alt="overview"</img>
+ * <br/>
+ * 
+ * The user of the package interacts with the {@link UserAdministration} interface for the following tasks: 
+ * <ul>
+ *   <li>Adding users and removing users</li>
+ *   <li>Adding users to groups and removing them from groups</li>
+ *   <li>Renaming users and groups</li>
+ *   <li>Modifying the user's password</li>
+ *   <li>Populate with initial users upon first startup</li>
+ * </ul>
+ * In addition, it provides methods for authenticating the user. Note however that it is also possible
+ * to use declarative Java EE security using the appropriate security realm. See for instance, 
+ * <a href="http://flexiblejdbcrealm.wamblee.org">flexible JDBC realm</a> for a Glassfish based solution.
+ * 
+ * {@link UserAdminInitializer} can be used to automatically initialize the user administration with 
+ * initial users and groups when there are no users defined yet. 
+ * 
+ * To use the user administration interface, several implementation classes must be wired together. This is 
+ * explained below. 
+ * 
+ * There is one implementation {@link UserAdministrationImpl} of this interface that must be constructed
+ * with a {@link UserSet} and {@link GroupSet} implementation, together with two validators: one for
+ * user names and another for group names. 
+ * 
+ * For user and groups sets there are two implementations, one inmemory and another with database persistence.
+ * Typically the one with database persistence is used but for testing other code, the inmemory implementation
+ * can be used. 
+ * <br/>
+ * <img src="doc-files/Class_Diagram__org.wamblee.security.authentication__sets.jpg"/>
+ * <br/>
+ * 
+ * At construction of the userset, a password validator is required as well as a digest algorithm to 
+ * compute a digest of the password to store in the database and also to validate users against. 
+ * <br/>
+ * <img src="doc-files/Class_Diagram__org.wamblee.security.authentication__digester.jpg"/>
+ * <br/>
+ * 
+ * Finally, there is the basic model for users and groups that is used under the covers. As a user
+ * of the security library these objects will typically not be used. 
+ * <br/>
+ * <img src="doc-files/Class_Diagram__org.wamblee.security.authentication__digester.jpg"/>
+ * <br/>
+ */
+package org.wamblee.security.authentication;
\ No newline at end of file