Examples of FeatureInfo


Examples of org.geoserver.w3ds.types.FeatureInfo

  public GetFeatureInfo(GeoServer geoServer, Catalog catalog,
      GetFeatureInfoRequest request) {
    this.geoServer = geoServer;
    this.catalog = catalog;
    this.request = request;
    this.featureInfo = new FeatureInfo();
  }
View Full Code Here

Examples of org.locationtech.geogig.api.FeatureInfo

                                } else {
                                    RevFeatureType featureType = command(RevObjectParse.class)
                                            .setObjectId(
                                                    mergeIntoDiff.getNewObject().getMetadataId())
                                            .call(RevFeatureType.class).get();
                                    FeatureInfo merged = new FeatureInfo(mergedFeature,
                                            featureType, path);
                                    report.addMerged(merged);
                                }
                            }
                        }
View Full Code Here

Examples of org.locationtech.geogig.api.FeatureInfo

     * @param path the path of the added feature
     * @param feature the feature
     * @param featureType the feature type of the added feature
     */
    public void addAddedFeature(String path, Feature feature, RevFeatureType featureType) {
        addedFeatures.add(new FeatureInfo(feature, featureType, path));
        addFeatureType(featureType);
    }
View Full Code Here

Examples of org.locationtech.geogig.api.FeatureInfo

     * @param path the path of the removed feature
     * @param feature the feature
     * @param featureType the feature type of the removed feature
     */
    public void addRemovedFeature(String path, Feature feature, RevFeatureType featureType) {
        removedFeatures.add(new FeatureInfo(feature, featureType, path));
        addFeatureType(featureType);
    }
View Full Code Here

Examples of org.wso2.carbon.component.mgt.services.prov.data.FeatureInfo

        }
        return features;
    }

    public FeatureInfo getInstallableFeatureInfo(String featureID, String featureVersion) throws AxisFault {
        FeatureInfo featureInfo = null;
        try {
            IInstallableUnit iu = RepositoryUtils.getInstallableUnit(featureID, featureVersion);
            if (iu == null) {
                handleException("Error occured while quering feature information :" + featureID + "-" + featureVersion,
                        "failed.get.feature.information");
View Full Code Here

Examples of org.wso2.carbon.component.mgt.stub.prov.data.FeatureInfo

        }
        return featureWrappers;
    }

    public FeatureInfo getInstallableFeatureDetails(String featureID, String featureVersion) throws Exception {
        FeatureInfo featureInfo = null;
        try {
            return repositoryAdminServiceStub.getInstallableFeatureInfo(featureID, featureVersion);
        } catch (AxisFault e) {
            handleException(MessageFormat.format(bundle.getString(e.getMessage()),
                    featureID, featureVersion), 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.