]> 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
d7448f91412d80da55047c6adfb157ea841cd32e
[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 UserNature mapUserInfoFromContext(DirContextOperations ctx) {
28 CoworkerNature nature = new CoworkerNature();
29 nature.setMobile(ctx.getStringAttribute("mobile"));
30 nature.setTelephoneNumber(ctx.getStringAttribute("telephoneNumber"));
31
32 if (nature.getMobile() == null
33 && nature.getTelephoneNumber() == null)
34 return null;
35 else
36 return nature;
37 }
38
39 public void mapUserInfoToContext(UserNature userInfoArg,
40 DirContextAdapter ctx) {
41 CoworkerNature nature = (CoworkerNature) userInfoArg;
42 if (nature.getMobile() == null || !nature.getMobile().equals("")) {
43 ctx.setAttributeValue("mobile", nature.getMobile());
44 }
45 if (nature.getTelephoneNumber() == null
46 || !nature.getTelephoneNumber().equals("")) {
47 ctx.setAttributeValue("telephoneNumber", nature
48 .getTelephoneNumber());
49 }
50 }
51
52 public Boolean supports(UserNature userNature) {
53 return userNature instanceof CoworkerNature;
54 }
55
56 }