com.route4me.sdk.examples.users.UpdateUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route4me-java-sdk Show documentation
Show all versions of route4me-java-sdk Show documentation
>This SDK makes it easier for you use the Route4Me API, which creates optimally sequenced driving routes for many drivers.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.route4me.sdk.examples.users;
import com.route4me.sdk.exception.APIException;
import com.route4me.sdk.services.users.User;
import com.route4me.sdk.services.users.UsersManager;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author juan
*/
public class UpdateUser {
public static void main(String[] args) {
String apiKey = System.getenv("R4M_API_KEY");
UsersManager manager = new UsersManager(apiKey);
User user = null;
try {
user = manager.getUser("1");
System.out.println(user);
} catch (APIException ex) {
Logger.getLogger(GetUser.class.getName()).log(Level.SEVERE, null, ex);
}
user.setMemberPhone("123456789");
try {
user = manager.updateUser(user);
System.out.println(user);
} catch (APIException ex) {
Logger.getLogger(UpdateUser.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy