use of org.openforis.collect.metamodel.proxy.SurveyProxy in project collect by openforis.
the class SessionService method setActiveSurvey.
protected SurveyProxy setActiveSurvey(CollectSurvey survey, boolean work) {
SessionState sessionState = sessionManager.getSessionState();
sessionState.setActiveSurvey(survey);
sessionState.setActiveSurveyWork(work);
SurveyProxy proxy = new SurveyProxy(survey);
return proxy;
}
Aggregations