Examples of SbiGeoFeatures


Examples of it.eng.spagobi.mapcatalogue.metadata.SbiGeoFeatures

    logger.debug("IN");
    if (feature == null) {
      logger.warn("SDKFeature in input is null!!");
      return null;
    }
    SbiGeoFeatures sbiFeature = null;
    try {
      sbiFeature=new SbiGeoFeatures();
      sbiFeature.setFeatureId(feature.getFeatureId());
      sbiFeature.setName(feature.getName());
      sbiFeature.setDescr(feature.getDescr());
      sbiFeature.setType(feature.getType());

    } catch (Exception e) {
      logger.error("Error while converting SDKFeature into SbiGeoFeature.", e);
      logger.debug("Returning null.");
      return null;
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.