Examples of toSpagoBiGeoMaps()


Examples of it.eng.spagobi.mapcatalogue.bo.GeoMap.toSpagoBiGeoMaps()

      GeoMap geoMap = DAOFactory.getSbiGeoMapsDAO().loadMapByID(mapId);
      if (geoMap == null) {
        logger.warn("Geo Map with identifier [" + mapId + "] not existing.");
        return null;
      }
      toReturn = new SDKObjectsConverter().fromSbiGeoMapToSDKMap(geoMap.toSpagoBiGeoMaps());
    } catch(NotAllowedOperationException e) {
      throw e;
    } catch(Exception e) {
      logger.error("Error while retrieving SDKFeature list", e);
      logger.debug("Returning null");
View Full Code Here

Examples of it.eng.spagobi.mapcatalogue.bo.GeoMap.toSpagoBiGeoMaps()

      super.checkUserPermissionForFunctionality(SpagoBIConstants.MAPCATALOGUE_MANAGEMENT, "User cannot see map catalogues congifuration.");
      List mapList = DAOFactory.getSbiGeoMapsDAO().loadAllMaps();
      toReturn = new SDKMap[mapList.size()];
      for (int i = 0; i < mapList.size(); i++) {
        GeoMap geoMap = (GeoMap) mapList.get(i);
        SDKMap sdkMap = new SDKObjectsConverter().fromSbiGeoMapToSDKMap(geoMap.toSpagoBiGeoMaps());
        toReturn[i] = sdkMap;
      }
    } catch(NotAllowedOperationException e) {
      throw e;
    } catch(Exception e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.