Hi, In the after() method of a Pull Actions, I am trying to list out the user attributes from the pull, e.g.:
User myUser = userDAO.find(entity.getKey()); List <? extends UPlainAttr> listOfAttrs = outsideUser.getPlainAttrs(); // Print the name from the list.... for(UPlainAttr ldapAttrib : listOfAttrs) { System.out.println(ldapAttrib.getKey()); System.out.println(ldapAttrib.getValuesAsStrings()); } So that loop outputs the key/UUID for each attribute and the values, but is there a way to, given the key/UUID of an attribute, get the (String) "name" of the attributes? Thanks, Jim