]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/core/DefaultArgeoSecurity.java
Introduce Jackrabbit security
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.core / src / main / java / org / argeo / security / core / DefaultArgeoSecurity.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
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
17 package org.argeo.security.core;
18
19 import org.argeo.security.ArgeoUser;
20 import org.argeo.security.ArgeoSecurity;
21 import org.argeo.security.nature.SimpleUserNature;
22
23 /** Holds deployment specific security information. */
24 public class DefaultArgeoSecurity implements ArgeoSecurity {
25 private String superUsername = "root";
26
27 public void beforeCreate(ArgeoUser user) {
28 SimpleUserNature simpleUserNature;
29 try {
30 simpleUserNature = SimpleUserNature
31 .findSimpleUserNature(user, null);
32 } catch (Exception e) {
33 simpleUserNature = new SimpleUserNature();
34 user.getUserNatures().put("simpleUserNature", simpleUserNature);
35 }
36
37 if (simpleUserNature.getLastName() == null
38 || simpleUserNature.getLastName().equals(""))
39 simpleUserNature.setLastName("empty");// to prevent issue with sn in
40 // LDAP
41
42 }
43
44 public String getSuperUsername() {
45 return superUsername;
46 }
47
48 public void setSuperUsername(String superUsername) {
49 this.superUsername = superUsername;
50 }
51
52 }