Retrieve Custom Attribute
To retrieve custom attributes:
    UserInfoResponse infoResponse=processor.getUserInfo(username);
    List<UserCustomAttributes>cs=infoResponse.getCustomAttribute();
    for(UserCustomAttributes us:cs)
    { System.out.println(us.getName()+" "+us.getValue());
    }