removed comments
This commit is contained in:
parent
5d59c9dcbc
commit
736264ddf1
|
@ -151,5 +151,4 @@ public interface GeoportalDataViewerService extends RemoteService {
|
||||||
ResultSetPaginatedData getListConcessioni(Integer start, Integer limit, SearchingFilter filter,
|
ResultSetPaginatedData getListConcessioni(Integer start, Integer limit, SearchingFilter filter,
|
||||||
boolean reloadFromService) throws Exception;
|
boolean reloadFromService) throws Exception;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,8 +40,8 @@ public interface GeoportalDataViewerServiceAsync {
|
||||||
|
|
||||||
void parseWmsRequest(String wmsRequest, String layerName, AsyncCallback<GeoInformationForWMSRequest> callback);
|
void parseWmsRequest(String wmsRequest, String layerName, AsyncCallback<GeoInformationForWMSRequest> callback);
|
||||||
|
|
||||||
void getDataResult(List<LayerObject> layerObjects, String mapSrsName, BoundsMap mapBBOX, int maxWFSFeature, double zoomLevel,
|
void getDataResult(List<LayerObject> layerObjects, String mapSrsName, BoundsMap mapBBOX, int maxWFSFeature,
|
||||||
AsyncCallback<List<GeoNaSpatialQueryResult>> callback);
|
double zoomLevel, AsyncCallback<List<GeoNaSpatialQueryResult>> callback);
|
||||||
|
|
||||||
void getConcessioneForId(String mongoId, AsyncCallback<ConcessioneDV> callback);
|
void getConcessioneForId(String mongoId, AsyncCallback<ConcessioneDV> callback);
|
||||||
|
|
||||||
|
@ -56,8 +56,7 @@ public interface GeoportalDataViewerServiceAsync {
|
||||||
|
|
||||||
void getPublicLinksFor(GeoNaItemRef item, AsyncCallback<GeoNaItemRef> asyncCallback);
|
void getPublicLinksFor(GeoNaItemRef item, AsyncCallback<GeoNaItemRef> asyncCallback);
|
||||||
|
|
||||||
void getLayersForId(String itemType, String itemId,
|
void getLayersForId(String itemType, String itemId, AsyncCallback<List<LayerConcessioneDV>> asyncCallback);
|
||||||
AsyncCallback<List<LayerConcessioneDV>> asyncCallback);
|
|
||||||
|
|
||||||
void getWFSFeatures(List<LayerObject> layerObjects, String mapSrsName, BoundsMap selectBBOX, int maxWFSFeature,
|
void getWFSFeatures(List<LayerObject> layerObjects, String mapSrsName, BoundsMap selectBBOX, int maxWFSFeature,
|
||||||
double zoomLevel, AsyncCallback<List<GeoNaSpatialQueryResult>> callback);
|
double zoomLevel, AsyncCallback<List<GeoNaSpatialQueryResult>> callback);
|
||||||
|
|
|
@ -743,7 +743,6 @@ public class GeoportalDataViewerServiceImpl extends RemoteServiceServlet impleme
|
||||||
|
|
||||||
SessionUtil.getCurrentContext(getThreadLocalRequest(), true);
|
SessionUtil.getCurrentContext(getThreadLocalRequest(), true);
|
||||||
MongoServiceCommon serviceCommon = new MongoServiceCommon();
|
MongoServiceCommon serviceCommon = new MongoServiceCommon();
|
||||||
|
|
||||||
// TODO MUST BE REPLACED BY COUNT
|
// TODO MUST BE REPLACED BY COUNT
|
||||||
List<Concessione> listOfConcessioni = SessionUtil.getListOfConcessioni(getThreadLocalRequest(),
|
List<Concessione> listOfConcessioni = SessionUtil.getListOfConcessioni(getThreadLocalRequest(),
|
||||||
reloadFromService);
|
reloadFromService);
|
||||||
|
|
Loading…
Reference in New Issue