Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@97062 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
4e04f6e8d0
commit
e84c33a352
|
@ -7896,10 +7896,10 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
public void startSplitColumn(SplitColumnSession splitColumnSession)
|
public void startSplitColumn(SplitColumnSession splitColumnSession, HttpSession session)
|
||||||
throws TDGWTServiceException {
|
throws TDGWTServiceException {
|
||||||
try {
|
try {
|
||||||
HttpSession session = this.getThreadLocalRequest().getSession();
|
//HttpSession session = this.getThreadLocalRequest().getSession();
|
||||||
SessionUtil.setSplitColumnSession(session, splitColumnSession);
|
SessionUtil.setSplitColumnSession(session, splitColumnSession);
|
||||||
ASLSession aslSession = SessionUtil.getAslSession(session);
|
ASLSession aslSession = SessionUtil.getAslSession(session);
|
||||||
if (splitColumnSession == null) {
|
if (splitColumnSession == null) {
|
||||||
|
@ -8041,10 +8041,10 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
public void startMergeColumn(MergeColumnSession mergeColumnSession)
|
public void startMergeColumn(MergeColumnSession mergeColumnSession, HttpSession session)
|
||||||
throws TDGWTServiceException {
|
throws TDGWTServiceException {
|
||||||
try {
|
try {
|
||||||
HttpSession session = this.getThreadLocalRequest().getSession();
|
//HttpSession session = this.getThreadLocalRequest().getSession();
|
||||||
SessionUtil.setMergeColumnSession(session, mergeColumnSession);
|
SessionUtil.setMergeColumnSession(session, mergeColumnSession);
|
||||||
ASLSession aslSession = SessionUtil.getAslSession(session);
|
ASLSession aslSession = SessionUtil.getAslSession(session);
|
||||||
if (mergeColumnSession == null) {
|
if (mergeColumnSession == null) {
|
||||||
|
|
Loading…
Reference in New Issue