Null check for ClientResponse in PolicyUril.java
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / service / EPLdapServiceImpl.java
index dfcc0c7..82e44fd 100644 (file)
-/*-\r
- * ================================================================================\r
- * ECOMP Portal\r
- * ================================================================================\r
- * Copyright (C) 2017 AT&T Intellectual Property\r
- * ================================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- * \r
- *      http://www.apache.org/licenses/LICENSE-2.0\r
- * \r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- * ================================================================================\r
- */\r
-package org.openecomp.portalapp.portal.service;\r
-\r
-import java.util.ArrayList;\r
-import java.util.Collections;\r
-import java.util.List;\r
-\r
-import javax.naming.NamingEnumeration;\r
-import javax.naming.NamingException;\r
-import javax.naming.directory.Attribute;\r
-import javax.naming.directory.Attributes;\r
-import javax.naming.directory.DirContext;\r
-import javax.naming.directory.SearchControls;\r
-\r
-import org.slf4j.MDC;\r
-import org.springframework.beans.factory.annotation.Autowired;\r
-import org.springframework.context.annotation.EnableAspectJAutoProxy;\r
-import org.springframework.stereotype.Service;\r
-import org.springframework.transaction.annotation.Transactional;\r
-\r
-import org.openecomp.portalsdk.core.command.support.SearchResult;\r
-import org.openecomp.portalsdk.core.domain.support.DomainVo;\r
-import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;\r
-import org.openecomp.portalsdk.core.service.support.FusionService;\r
-import org.openecomp.portalsdk.core.service.support.ServiceLocator;\r
-import org.openecomp.portalsdk.core.util.SystemProperties;\r
-import org.openecomp.portalapp.portal.domain.EPUser;\r
-import org.openecomp.portalapp.portal.logging.aop.EPAuditLog;\r
-import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;\r
-import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties;\r
-import org.openecomp.portalapp.portal.utils.EcompPortalUtils;\r
-\r
-@Service("epLdapService")\r
-@Transactional\r
-@org.springframework.context.annotation.Configuration\r
-@EnableAspectJAutoProxy\r
-public class EPLdapServiceImpl extends FusionService implements EPLdapService {\r
-       @Autowired\r
-       private ServiceLocator serviceLocator;\r
-       \r
-       EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLdapServiceImpl.class);\r
-\r
-       @EPAuditLog\r
-    @SuppressWarnings({ "rawtypes", "unchecked" })\r
-       public SearchResult searchPost(DomainVo searchCriteria, String sortBy1, String sortBy2, String sortBy3, \r
-               int pageNo, int dataSize, int userId) throws Exception {\r
-\r
-       String remoteHost = "";\r
-                       \r
-               // initialize the directory context to access POST\r
-        DirContext dirContext = serviceLocator.getDirContext(SystemProperties.getProperty(SystemProperties.POST_INITIAL_CONTEXT_FACTORY),\r
-                                                                  SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL),\r
-                                                                  SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL));\r
-        \r
-        SearchResult searchResult = new SearchResult();\r
-\r
-        try {\r
-        \r
-               remoteHost = String.format("%s/%s", SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL), \r
-                                                                       SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL));\r
-               MDC.put(EPCommonSystemProperties.FULL_URL, remoteHost);\r
-               \r
-          String[] postAttributes =  {"nickname","givenName","initials","sn","employeeNumber","mail","telephoneNumber",\r
-                               "departmentNumber","a1","street","roomNumber","l","st","postalCode","zip4","physicalDeliveryOfficeName","bc",\r
-                               "friendlyCountryName","bd","bdname","bu","buname","jtname","mgrid","a2","compcode","compdesc",\r
-                               "costcenter","silo","b2"};\r
-\r
-          SearchControls searchControls = new SearchControls();\r
-          searchControls.setTimeLimit(5000);\r
-          searchControls.setReturningAttributes(postAttributes);\r
-\r
-          StringBuffer filterClause = new StringBuffer("(&(objectClass=*)");\r
-\r
-          EPUser user = (EPUser)searchCriteria;\r
-\r
-          if(Utilities.nvl(user.getFirstName()).length() > 0) {\r
-            filterClause.append("(givenName=").append(user.getFirstName()).append("*)");\r
-          }\r
-          if(Utilities.nvl(user.getLastName()).length() > 0) {\r
-            filterClause.append("(sn=").append(user.getLastName()).append("*)");\r
-          }\r
-          if(Utilities.nvl(user.getHrid()).length() > 0) {\r
-            filterClause.append("(employeeNumber=").append(user.getHrid()).append("*)");\r
-          }\r
-          if(Utilities.nvl(user.getOrgManagerUserId()).length() > 0) {\r
-              filterClause.append("(mgrid=").append(user.getOrgManagerUserId()).append("*)");\r
-            }\r
-          if(Utilities.nvl(user.getOrgCode()).length() > 0) {\r
-            filterClause.append("(departmentNumber=").append(user.getOrgCode()).append("*)");\r
-          }\r
-          if(Utilities.nvl(user.getEmail()).length() > 0) {\r
-            filterClause.append("(mail=").append(user.getEmail()).append("*)");\r
-          }\r
-          if(Utilities.nvl(user.getOrgUserId()).length() > 0) {\r
-            filterClause.append("(a1=").append(user.getOrgUserId()).append("*)");\r
-          }\r
-          filterClause.append("(c3=N)"); // this has been added to filter CP09 entries on the LDAP server that are duplicates of existing individuals\r
-          filterClause.append(")");\r
-\r
-          List list = new ArrayList();\r
-          if (!filterClause.toString().equals("(&(objectClass=*))")) {\r
-                 NamingEnumeration e = dirContext.search(SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL) + "/" +\r
-                                                      SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL),\r
-                                                      filterClause.toString(),\r
-                                                      searchControls);\r
-                 list = processResults(e);\r
-          }\r
-          \r
-          Collections.sort(list);\r
-\r
-          searchResult = new SearchResult(list);\r
-          searchResult.setPageNo(pageNo);\r
-          if(dataSize >= 0) {\r
-            searchResult.setDataSize(dataSize);\r
-          }\r
-          else {\r
-            searchResult.setDataSize(list.size());\r
-          }\r
-        } catch(NamingException ne) {\r
-               String stackTrace = EcompPortalUtils.getStackTrace(ne);\r
-               logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the LDAP search. Details: " + stackTrace);\r
-        } catch(Exception e) {\r
-               String stackTrace = EcompPortalUtils.getStackTrace(e);\r
-               logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the LDAP search. Details: " + stackTrace);\r
-        }\r
-        finally {\r
-               dirContext.close();\r
-        }\r
-\r
-        return searchResult;\r
-    }\r
-\r
-\r
-    @SuppressWarnings({ "rawtypes", "unchecked" })\r
-    @EPMetricsLog\r
-       private ArrayList processResults(NamingEnumeration e) throws NamingException {\r
-      ArrayList results = new ArrayList();\r
-      int count = 0;\r
-\r
-      while (e.hasMore()) {\r
-        javax.naming.directory.SearchResult searchResult = (javax.naming.directory.SearchResult)e.next();\r
-        results.add(processAttributes(searchResult.getAttributes()));\r
-        count++;\r
-\r
-        if(count > Integer.parseInt(SystemProperties.getProperty(SystemProperties.POST_MAX_RESULT_SIZE))) {\r
-          break;\r
-        }\r
-      }\r
-      return results;\r
-    }\r
-\r
-\r
-    @SuppressWarnings("rawtypes")\r
-    @EPMetricsLog\r
-       private DomainVo processAttributes(Attributes resultAttributes) throws NamingException {\r
-      EPUser user = new EPUser();\r
-\r
-      try {\r
-        if (resultAttributes == null) {\r
-          logger.debug(EELFLoggerDelegate.debugLogger, "This result has no attributes");\r
-        } else {\r
-          for (NamingEnumeration e = resultAttributes.getAll(); e.hasMore();) { //why the nested loop?\r
-            Attribute attribute = (Attribute)e.next();\r
-            for (NamingEnumeration ie = attribute.getAll(); ie.hasMore();) {\r
-              if (attribute.getID().equalsIgnoreCase("nickname")) {\r
-                  user.setFirstName((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("initials")) {\r
-                  user.setMiddleInitial((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("sn")) {\r
-                  user.setLastName((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("employeeNumber")) {\r
-                  user.setHrid((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("mail")) {\r
-                  user.setEmail((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("telephoneNumber")) {\r
-                  user.setPhone((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("departmentNumber")) {\r
-                  user.setOrgCode((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("a1")) {\r
-                  user.setOrgUserId((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("street")) {\r
-                  user.setAddress1((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("roomNumber")) {\r
-                  user.setAddress2((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("l")) {\r
-                  user.setCity((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("st")) {\r
-                  user.setState((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("postalCode")) {\r
-                  user.setZipCode((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("zip4")) {\r
-                  user.setZipCodeSuffix((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("physicalDeliveryOfficeName")) {\r
-                  user.setLocationClli((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("bc")) {\r
-                  user.setBusinessCountryCode((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("friendlyCountryName")) {\r
-                  user.setBusinessCountryName((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("bd")) {\r
-                  user.setDepartment((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("bdname")) {\r
-                  user.setDepartmentName((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("jtname")) {\r
-                  user.setJobTitle((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("mgrid")) {\r
-                  user.setOrgManagerUserId((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("a2")) {\r
-                  user.setCommandChain((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("compcode")) {\r
-                  user.setCompanyCode((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("compdesc")) {\r
-                  user.setCompany((String) ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("bu")) {\r
-                  user.setBusinessUnit((String)ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("buname")) {\r
-                  user.setBusinessUnitName((String)ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("silo")) {\r
-                  user.setSiloStatus((String)ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("costcenter")) {\r
-                  user.setCostCenter((String)ie.next());\r
-              }\r
-              else if (attribute.getID().equalsIgnoreCase("b2")) {\r
-                  user.setFinancialLocCode((String)ie.next());\r
-              }\r
-              else { //we don't care about returned attribute, let's move on\r
-                ie.next();\r
-              }\r
-\r
-            }\r
-          }\r
-        }\r
-      } catch (NamingException e) {\r
-         String stackTrace = EcompPortalUtils.getStackTrace(e);\r
-         logger.error(EELFLoggerDelegate.errorLogger, "An error occurred while processing the following user from POST with an Organization User ID of " + user.getOrgUserId());\r
-         logger.error(EELFLoggerDelegate.errorLogger, "Exception occcurred while processing LDAP search results, Details: " + stackTrace);\r
-      } catch(Exception e) {\r
-         String stackTrace = EcompPortalUtils.getStackTrace(e);\r
-         logger.error(EELFLoggerDelegate.errorLogger, "Exception occcurred while processing LDAP search results, Details: " + stackTrace);\r
-      }\r
-      \r
-      return user;\r
-    }\r
-}\r
+/*-
+ * ============LICENSE_START==========================================
+ * ONAP Portal
+ * ===================================================================
+ * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
+ *
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the “License”);
+ * you may not use this software 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.
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *             https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * 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.
+ *
+ * ============LICENSE_END============================================
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ */
+package org.openecomp.portalapp.portal.service;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+import javax.naming.NamingEnumeration;
+import javax.naming.NamingException;
+import javax.naming.directory.Attribute;
+import javax.naming.directory.Attributes;
+import javax.naming.directory.DirContext;
+import javax.naming.directory.SearchControls;
+
+import org.openecomp.portalapp.portal.domain.EPUser;
+import org.openecomp.portalapp.portal.logging.aop.EPAuditLog;
+import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;
+import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties;
+import org.openecomp.portalsdk.core.command.support.SearchResult;
+import org.openecomp.portalsdk.core.domain.support.DomainVo;
+import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
+import org.openecomp.portalsdk.core.service.support.FusionService;
+import org.openecomp.portalsdk.core.service.support.ServiceLocator;
+import org.openecomp.portalsdk.core.util.SystemProperties;
+import org.slf4j.MDC;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.EnableAspectJAutoProxy;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+@Service("epLdapService")
+@Transactional
+@org.springframework.context.annotation.Configuration
+@EnableAspectJAutoProxy
+public class EPLdapServiceImpl extends FusionService implements EPLdapService {
+       @Autowired
+       private ServiceLocator serviceLocator;
+
+       EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLdapServiceImpl.class);
+
+       @EPAuditLog
+       @SuppressWarnings({ "rawtypes", "unchecked" })
+       public SearchResult searchPost(DomainVo searchCriteria, String sortBy1, String sortBy2, String sortBy3, int pageNo,
+                       int dataSize, int userId) throws Exception {
+
+               String remoteHost = "";
+
+               // initialize the directory context to access POST
+               DirContext dirContext = serviceLocator.getDirContext(
+                               SystemProperties.getProperty(SystemProperties.POST_INITIAL_CONTEXT_FACTORY),
+                               SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL),
+                               SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL));
+
+               SearchResult searchResult = new SearchResult();
+
+               try {
+
+                       remoteHost = String.format("%s/%s", SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL),
+                                       SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL));
+                       MDC.put(EPCommonSystemProperties.FULL_URL, remoteHost);
+
+                       String[] postAttributes = { "nickname", "givenName", "initials", "sn", "employeeNumber", "mail",
+                                       "telephoneNumber", "departmentNumber", "a1", "street", "roomNumber", "l", "st", "postalCode",
+                                       "zip4", "physicalDeliveryOfficeName", "bc", "friendlyCountryName", "bd", "bdname", "bu", "buname",
+                                       "jtname", "mgrid", "a2", "compcode", "compdesc", "costcenter", "silo", "b2" };
+
+                       SearchControls searchControls = new SearchControls();
+                       searchControls.setTimeLimit(5000);
+                       searchControls.setReturningAttributes(postAttributes);
+
+                       StringBuffer filterClause = new StringBuffer("(&(objectClass=*)");
+
+                       EPUser user = (EPUser) searchCriteria;
+
+                       if (Utilities.nvl(user.getFirstName()).length() > 0) {
+                               filterClause.append("(givenName=").append(user.getFirstName()).append("*)");
+                       }
+                       if (Utilities.nvl(user.getLastName()).length() > 0) {
+                               filterClause.append("(sn=").append(user.getLastName()).append("*)");
+                       }
+                       if (Utilities.nvl(user.getHrid()).length() > 0) {
+                               filterClause.append("(employeeNumber=").append(user.getHrid()).append("*)");
+                       }
+                       if (Utilities.nvl(user.getOrgManagerUserId()).length() > 0) {
+                               filterClause.append("(mgrid=").append(user.getOrgManagerUserId()).append("*)");
+                       }
+                       if (Utilities.nvl(user.getOrgCode()).length() > 0) {
+                               filterClause.append("(departmentNumber=").append(user.getOrgCode()).append("*)");
+                       }
+                       if (Utilities.nvl(user.getEmail()).length() > 0) {
+                               filterClause.append("(mail=").append(user.getEmail()).append("*)");
+                       }
+                       if (Utilities.nvl(user.getOrgUserId()).length() > 0) {
+                               filterClause.append("(a1=").append(user.getOrgUserId()).append("*)");
+                       }
+                       filterClause.append("(c3=N)"); // this has been added to filter CP09 entries on the LDAP server that are
+                                                                                       // duplicates of existing individuals
+                       filterClause.append(")");
+
+                       List list = new ArrayList();
+                       if (!filterClause.toString().equals("(&(objectClass=*))")) {
+                               NamingEnumeration e = dirContext.search(
+                                               SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL) + "/"
+                                                               + SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL),
+                                               filterClause.toString(), searchControls);
+                               list = processResults(e);
+                       }
+
+                       Collections.sort(list);
+
+                       searchResult = new SearchResult(list);
+                       searchResult.setPageNo(pageNo);
+                       if (dataSize >= 0) {
+                               searchResult.setDataSize(dataSize);
+                       } else {
+                               searchResult.setDataSize(list.size());
+                       }
+               } catch (NamingException ne) {
+                       logger.error(EELFLoggerDelegate.errorLogger, "searchPost failed with naming exception", ne);
+               } catch (Exception e) {
+                       logger.error(EELFLoggerDelegate.errorLogger, "searchPost failed", e);
+               } finally {
+                       dirContext.close();
+               }
+
+               return searchResult;
+       }
+
+       @SuppressWarnings({ "rawtypes", "unchecked" })
+       @EPMetricsLog
+       private ArrayList processResults(NamingEnumeration e) throws NamingException {
+               ArrayList results = new ArrayList();
+               int count = 0;
+
+               while (e.hasMore()) {
+                       javax.naming.directory.SearchResult searchResult = (javax.naming.directory.SearchResult) e.next();
+                       results.add(processAttributes(searchResult.getAttributes()));
+                       count++;
+
+                       if (count > Integer.parseInt(SystemProperties.getProperty(SystemProperties.POST_MAX_RESULT_SIZE))) {
+                               break;
+                       }
+               }
+               return results;
+       }
+
+       @SuppressWarnings("rawtypes")
+       @EPMetricsLog
+       private DomainVo processAttributes(Attributes resultAttributes) throws NamingException {
+               EPUser user = new EPUser();
+
+               try {
+                       if (resultAttributes == null) {
+                               logger.debug(EELFLoggerDelegate.debugLogger, "This result has no attributes");
+                       } else {
+                               for (NamingEnumeration e = resultAttributes.getAll(); e.hasMore();) { // why the nested loop?
+                                       Attribute attribute = (Attribute) e.next();
+                                       for (NamingEnumeration ie = attribute.getAll(); ie.hasMore();) {
+                                               if (attribute.getID().equalsIgnoreCase("nickname")) {
+                                                       user.setFirstName((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("initials")) {
+                                                       user.setMiddleInitial((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("sn")) {
+                                                       user.setLastName((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("employeeNumber")) {
+                                                       user.setHrid((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("mail")) {
+                                                       user.setEmail((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("telephoneNumber")) {
+                                                       user.setPhone((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("departmentNumber")) {
+                                                       user.setOrgCode((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("a1")) {
+                                                       user.setOrgUserId((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("street")) {
+                                                       user.setAddress1((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("roomNumber")) {
+                                                       user.setAddress2((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("l")) {
+                                                       user.setCity((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("st")) {
+                                                       user.setState((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("postalCode")) {
+                                                       user.setZipCode((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("zip4")) {
+                                                       user.setZipCodeSuffix((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("physicalDeliveryOfficeName")) {
+                                                       user.setLocationClli((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("bc")) {
+                                                       user.setBusinessCountryCode((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("friendlyCountryName")) {
+                                                       user.setBusinessCountryName((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("bd")) {
+                                                       user.setDepartment((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("bdname")) {
+                                                       user.setDepartmentName((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("jtname")) {
+                                                       user.setJobTitle((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("mgrid")) {
+                                                       user.setOrgManagerUserId((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("a2")) {
+                                                       user.setCommandChain((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("compcode")) {
+                                                       user.setCompanyCode((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("compdesc")) {
+                                                       user.setCompany((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("bu")) {
+                                                       user.setBusinessUnit((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("buname")) {
+                                                       user.setBusinessUnitName((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("silo")) {
+                                                       user.setSiloStatus((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("costcenter")) {
+                                                       user.setCostCenter((String) ie.next());
+                                               } else if (attribute.getID().equalsIgnoreCase("b2")) {
+                                                       user.setFinancialLocCode((String) ie.next());
+                                               } else { // we don't care about returned attribute, let's move on
+                                                       ie.next();
+                                               }
+
+                                       }
+                               }
+                       }
+               } catch (NamingException e) {
+                       logger.error(EELFLoggerDelegate.errorLogger, "processAttributes failed with naming exception", e);
+               } catch (Exception e) {
+                       logger.error(EELFLoggerDelegate.errorLogger, "processAttributes failed", e);
+               }
+
+               return user;
+       }
+}