(no commit message)
[utils] / security / usermgt / src / main / java / org / wamblee / security / authentication / AbstractUserSet.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16 package org.wamblee.security.authentication;
17
18 import org.wamblee.security.encryption.MessageDigester;
19
20 import static org.wamblee.security.authentication.UserMgtException.Reason.*;
21
22 /**
23  * User set base class.
24  */
25 public abstract class AbstractUserSet implements UserSet {
26     /**
27      * Password validator.
28      */
29     private NameValidator passwordValidator;
30
31     /**
32      * Password encoder.
33      */
34     private MessageDigester passwordEncoder;
35
36     /**
37      * Creates a new AbstractUserSet object.
38      * 
39      */
40     protected AbstractUserSet(NameValidator aPasswordValidator,
41         MessageDigester aPasswordEncoder) {
42         passwordValidator = aPasswordValidator;
43         passwordEncoder = aPasswordEncoder;
44     }
45
46     /**
47      * Sets the password validtor and encoder in the user.
48      * 
49      * @param aUser
50      *            User.
51      */
52     protected void setPasswordInfo(User aUser) {
53         aUser.setPasswordValidator(passwordValidator);
54         aUser.setPasswordEncoder(passwordEncoder);
55     }
56
57     @Override
58     public User createUser(String aUsername, String aPassword) {
59         User user = new User(aUsername, aPassword, passwordValidator,
60             passwordEncoder);
61
62         if (contains(user)) {
63             throw new UserMgtException(DUPLICATE_USER, user);
64         }
65
66         add(user);
67
68         return user;
69     }
70 }