/* (c) 2014 Open Source Geospatial Foundation - all rights reserved * (c) 2001 - 2013 OpenPlans * This code is licensed under the GPL 2.0 license, available at the root * application directory. */ package org.geoserver.wfs.xml.v1_0_0; import javax.xml.namespace.QName; import net.opengis.wfs.WfsFactory; import org.geotools.xml.AbstractComplexBinding; import org.geotools.xml.ElementInstance; import org.geotools.xml.Node; /** * Binding object for the type http://www.opengis.net/wfs:WFS_TransactionResponseType. * * <p> * <pre> * <code> * <xsd:complexType name="WFS_TransactionResponseType"> * <xsd:annotation> * <xsd:documentation> * The WFS_TransactionResponseType defines the format of * the XML document that a Web Feature Service generates * in response to a Transaction request. The response * includes the completion status of the transaction * and the feature identifiers of any newly created * feature instances. * </xsd:documentation> * </xsd:annotation> * <xsd:sequence> * <xsd:element maxOccurs="unbounded" minOccurs="0" * name="InsertResult" type="wfs:InsertResultType"> * <xsd:annotation> * <xsd:documentation> * The InsertResult element contains a list of ogc:FeatureId * elements that identify any newly created feature instances. * </xsd:documentation> * </xsd:annotation> * </xsd:element> * <xsd:element name="TransactionResult" type="wfs:TransactionResultType"> * <xsd:annotation> * <xsd:documentation> * The TransactionResult element contains a Status element * indicating the completion status of a transaction. In * the event that the transaction fails, additional element * may be included to help locate which part of the transaction * failed and why. * </xsd:documentation> * </xsd:annotation> * </xsd:element> * </xsd:sequence> * <xsd:attribute fixed="1.0.0" name="version" type="xsd:string" use="required"/> * </xsd:complexType> * * </code> * </pre> * @generated */ public class WFS_TransactionResponseTypeBinding extends AbstractComplexBinding { WfsFactory wfsfactory; public WFS_TransactionResponseTypeBinding(WfsFactory wfsfactory) { this.wfsfactory = wfsfactory; } /** * @generated */ public QName getTarget() { return WFS.WFS_TRANSACTIONRESPONSETYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //TODO: implement return null; } }