com.route4me.sdk.examples.addresses.DeleteAddress 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.
package com.route4me.sdk.examples.addresses;
import com.route4me.sdk.exception.APIException;
import com.route4me.sdk.services.routing.Address;
import com.route4me.sdk.services.routing.Route;
import com.route4me.sdk.services.routing.RoutesRequest;
import com.route4me.sdk.services.routing.RoutingManager;
import java.util.List;
public class DeleteAddress {
public static void main(String[] args) {
String apiKey = System.getenv("R4M_API_KEY");
RoutingManager manager = new RoutingManager(apiKey);
try {
Address addr = null;
List routes = manager.getRoutes(new RoutesRequest().setLimit(64));
for (Route r : routes) {
Route full = manager.getRoute(new RoutesRequest().setId(r.getId()));
if (full.getAddresses().isEmpty()) {
continue;
}
for (Address add : full.getAddresses()) {
if (!add.getDepot()) {
addr = add;
break;
}
}
if (addr == null) {
throw new RuntimeException("Cannot find an address for delete operation");
}
}
manager.deleteAddress(addr.getOptimizationProblemId(), addr.getRouteDestinationId());
} catch (APIException e) {
//handle exception
e.printStackTrace();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy