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

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

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

origin: geotools/geotools

final Wfs20Factory factory = Wfs20Factory.eINSTANCE;
TransactionType tx = factory.createTransactionType();
tx.setService("WFS");
tx.setHandle(request.getHandle());
origin: org.geotools/gt-wfs-ng

final Wfs20Factory factory = Wfs20Factory.eINSTANCE;
TransactionType tx = factory.createTransactionType();
tx.setService("WFS");
tx.setHandle(request.getHandle());
origin: org.geoserver/gs-wfs

  private void invokeQualifyRequest() {
    TransactionType transactionType = Wfs20Factory.eINSTANCE.createTransactionType();
    ReplaceType replaceType = Wfs20Factory.eINSTANCE.createReplaceType();
    EList<AbstractTransactionActionType> action =
        transactionType.getAbstractTransactionAction();
    action.add(replaceType);
    replaceType.getAny().add(mockFeature);

    Version version = new Version("2.0.0");
    Service service =
        new Service("id", "service", version, Collections.singletonList("Transaction"));
    Operation operation = new Operation("id", service, null, new Object[] {transactionType});

    replay(
        mockCatalog,
        mockFeature,
        mockFeatureType,
        mockName,
        mockNamespaceInfo,
        mockWorkspaceInfo);
    sut.qualifyRequest(mockWorkspaceInfo, null, operation, null);
  }
}
net.opengis.wfs20Wfs20FactorycreateTransactionType

Javadoc

Returns a new object of class 'Transaction Type'.

Popular methods of Wfs20Factory

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

Popular in Java

  • Updating database using SQL prepared statement
  • compareTo (BigDecimal)
  • getExternalFilesDir (Context)
  • getSupportFragmentManager (FragmentActivity)
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top plugins for Android Studio
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