* @throws ProfileServiceException
*/
@Override
public void updateProfile(Profile profile) throws ClientServicesException {
if (profile == null) {
throw new ClientServicesException(null, Messages.InvalidArgument_3);
}
Map<String, String> parameters = new HashMap<String, String>();
parameters.put(OUTPUT, VCARD);
parameters.put(FORMAT, FULL);
String id = profile.getUserid();