UserTrackerUtil.update(userTracker);
Iterator itr = userTrackerPaths.iterator();
while (itr.hasNext()) {
UserTrackerPath userTrackerPath = (UserTrackerPath)itr.next();
String pathId = Long.toString(CounterManagerUtil.increment(
UserTrackerPath.class.getName()));
userTrackerPath.setUserTrackerPathId(pathId);
userTrackerPath.setUserTrackerId(userTrackerId);
UserTrackerPathUtil.update(userTrackerPath);
}
return userTracker;