]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/ldap/nature/CoworkerUserNatureMapper.java
Introduce Argeo user edition
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.core / src / main / java / org / argeo / security / ldap / nature / CoworkerUserNatureMapper.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.ldap.nature;
18
19 import org.argeo.security.UserNature;
20 import org.argeo.security.ldap.UserNatureMapper;
21 import org.argeo.security.nature.CoworkerNature;
22 import org.springframework.ldap.core.DirContextAdapter;
23 import org.springframework.ldap.core.DirContextOperations;
24
25 public class CoworkerUserNatureMapper implements UserNatureMapper {
26
27 public String getName() {
28 return "coworker";
29 }
30
31 public UserNature mapUserInfoFromContext(DirContextOperations ctx) {
32 CoworkerNature nature = new CoworkerNature();
33 nature.setMobile(ctx.getStringAttribute("mobile"));
34 nature.setTelephoneNumber(ctx.getStringAttribute("telephoneNumber"));
35
36 if (nature.getMobile() == null && nature.getTelephoneNumber() == null)
37 return null;
38 else
39 return nature;
40 }
41
42 public void mapUserInfoToContext(UserNature userInfoArg,
43 DirContextAdapter ctx) {
44 CoworkerNature nature = (CoworkerNature) userInfoArg;
45 if (nature.getMobile() == null || !nature.getMobile().equals("")) {
46 ctx.setAttributeValue("mobile", nature.getMobile());
47 }
48 if (nature.getTelephoneNumber() == null
49 || !nature.getTelephoneNumber().equals("")) {
50 ctx.setAttributeValue("telephoneNumber",
51 nature.getTelephoneNumber());
52 }
53 }
54
55 public Boolean supports(UserNature userNature) {
56 return userNature instanceof CoworkerNature;
57 }
58
59 }