/**
* Routes the requests for a specific user class through the service centers network.
* @param userClass the user class to route.
*/
public void routeUserClass(UserClass userClass) {
LoadInfo loadInfo = userClass.getPath().getLoadInfos().get(associatedDevice);
Map<String,Double> routes = new HashMap<String,Double>();
if (loadInfo != null) { // route through server
routes.put(skipConnection.getTarget(), 0d);
routes.put(inputConnection.getTarget(), 1d);