// Set the ID of the activity to update.
Integer activityId = Integer.parseInt("INSERT_ACTIVITY_ID_HERE");
// Get the activity.
Activity activity = activityService.getActivity(activityId);
// Update the expected URL.
activity.setExpectedURL("http://google.com");
// Update the activity on the server.
Activity[] activities = activityService.updateActivities(new Activity[] {activity});
for (Activity updatedActivity : activities) {