Tabnine Logo
Wfs20Factory.createGetFeatureType
Code IndexAdd Tabnine to your IDE (free)

How to use
createGetFeatureType
method
in
net.opengis.wfs20.Wfs20Factory

Best Java code snippets using net.opengis.wfs20.Wfs20Factory.createGetFeatureType (Showing top 5 results out of 315)

origin: geotools/geotools

GetFeatureType getFeature = factory.createGetFeatureType();
getFeature.setService("WFS");
getFeature.setVersion(getVersion());
origin: org.geoserver/gs-wfs

  @Override
  public Object read(Object request, Map kvp, Map rawKvp) throws Exception {
    GetPropertyValueType gpv = (GetPropertyValueType) super.read(request, kvp, rawKvp);

    // parse a GetFeature and copy the query
    GetFeatureType gf = Wfs20Factory.eINSTANCE.createGetFeatureType();
    delegate.read(gf, kvp, rawKvp);

    if (gf.getAbstractQueryExpression().isEmpty()) {
      throw new WFSException(gpv, "Request did not specify a query");
    }

    gpv.setAbstractQueryExpression(gf.getAbstractQueryExpression().get(0));
    return gpv;
  }
}
origin: org.geoserver/gs-wfs

@Before
public void setupMocks() {
  deleteElementType1 = WfsFactory.eINSTANCE.createDeleteElementType();
  getFeatureType1 = WfsFactory.eINSTANCE.createGetFeatureType();
  deleteType2 = Wfs20Factory.eINSTANCE.createDeleteType();
  getFeatureType2 = Wfs20Factory.eINSTANCE.createGetFeatureType();
}
origin: org.geotools/gt-wfs-ng

GetFeatureType getFeature = factory.createGetFeatureType();
getFeature.setService("WFS");
getFeature.setVersion(getVersion());
origin: org.geoserver/gs-wfs

GetFeatureType getFeature = Wfs20Factory.eINSTANCE.createGetFeatureType();
getFeature.setBaseUrl(request.getBaseUrl());
getFeature.getAbstractQueryExpression().add(request.getAbstractQueryExpression());
net.opengis.wfs20Wfs20FactorycreateGetFeatureType

Javadoc

Returns a new object of class 'Get Feature Type'.

Popular methods of Wfs20Factory

  • createDeleteType
  • createParameterType
  • createFeatureCollectionType
  • createInsertType
  • createPropertyType
  • createQueryType
  • createReplaceType
  • createStoredQueryType
  • createTransactionType
  • createUpdateType
  • createValueReferenceType
  • createActionResultsType
  • createValueReferenceType,
  • createActionResultsType,
  • createCreateStoredQueryResponseType,
  • createCreatedOrModifiedFeatureType,
  • createDescribeFeatureTypeType,
  • createDescribeStoredQueriesResponseType,
  • createDescribeStoredQueriesType,
  • createExecutionStatusType,
  • createFeaturesLockedType

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
  • getSharedPreferences (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JList (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Option (scala)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now