use of org.objectweb.proactive.core.UniqueID in project scheduling by ow2-proactive.
the class SchedulerFrontendState method getSchedulerProperties.
public Map<String, Object> getSchedulerProperties() throws NotConnectedException {
UniqueID id = checkAccess();
UserIdentificationImpl ident = identifications.get(id).getUser();
renewUserSession(id, ident);
return PASchedulerProperties.getPropertiesAsHashMap();
}
use of org.objectweb.proactive.core.UniqueID in project scheduling by ow2-proactive.
the class SchedulerFrontendState method renewSession.
synchronized void renewSession() throws NotConnectedException {
UniqueID id = checkAccess();
UserIdentificationImpl ident = identifications.get(id).getUser();
// renew session for this user
renewUserSession(id, ident);
}
Aggregations