removed comments

feature_22518
Francesco Mangiacrapa 2 years ago
parent 5d59c9dcbc
commit 736264ddf1

@ -88,11 +88,11 @@ public interface GeoportalDataViewerService extends RemoteService {
/** /**
* Gets the uploaded images for id. * Gets the uploaded images for id.
* *
* @param itemType the item type * @param itemType the item type
* @param itemId the item id * @param itemId the item id
* @param maxImages the max images * @param maxImages the max images
* @return the uploaded images for id * @return the uploaded images for id
* @throws Exception * @throws Exception
*/ */
List<UploadedImageDV> getUploadedImagesForId(String itemType, String itemId, Integer maxImages) throws Exception; List<UploadedImageDV> getUploadedImagesForId(String itemType, String itemId, Integer maxImages) throws Exception;
@ -108,8 +108,8 @@ public interface GeoportalDataViewerService extends RemoteService {
/** /**
* Gets the layers for id. * Gets the layers for id.
* *
* @param itemType the item type * @param itemType the item type
* @param itemId the item id * @param itemId the item id
* @return the layers for id * @return the layers for id
* @throws Exception the exception * @throws Exception the exception
*/ */
@ -134,7 +134,7 @@ public interface GeoportalDataViewerService extends RemoteService {
* List of fields for searching. * List of fields for searching.
* *
* @return the list * @return the list
* @throws Exception * @throws Exception
*/ */
List<ItemField> listOfFieldsForSearching() throws Exception; List<ItemField> listOfFieldsForSearching() throws Exception;
@ -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…
Cancel
Save