Removed behaviors not supported

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@115561 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-06-25 16:31:20 +00:00
parent 91d893390c
commit d446f67283
3 changed files with 15 additions and 5 deletions

View File

@ -103,6 +103,7 @@ public class SessionUtil {
httpSession.getId(), username);
session.setScope(scope);
*/
} else {
session = SessionManager.getInstance().getASLSession(
httpSession.getId(), username);

View File

@ -3645,6 +3645,12 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
public ArrayList<Codelist> getCodelists() throws TDGWTServiceException {
try {
HttpSession session = this.getThreadLocalRequest().getSession();
//Remove this for multiple source
SDMXRegistrySource sdmxRegistrySource = new SDMXRegistrySource();
SessionUtil.setSDMXRegistrySource(session, sdmxRegistrySource);
//
return SessionUtil.retrieveCodelists(session);
} catch (TDGWTServiceException e) {
@ -3657,6 +3663,9 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
}
/**
* {@inheritDoc}
*/

View File

@ -16,11 +16,11 @@ public class Codelist implements Serializable {
private static final long serialVersionUID = -8353499109124097114L;
protected String id;
protected String name;
protected String agencyId;
protected String version;
protected String description;
private String id;
private String name;
private String agencyId;
private String version;
private String description;
public Codelist(){}