/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.wfs.xml.v110; import java.util.ArrayList; import java.util.List; import java.util.Objects; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.util.Utilities; import org.geotoolkit.wfs.xml.AllSomeType; import org.geotoolkit.wfs.xml.Transaction; /** * The TransactionType defines the Transaction operation. * A Transaction element contains one or more Insert, Update Delete and Native elements that allow a client application * to create, modify or remove feature instances from the feature repository that a Web Feature Service controls. * * * <p>Java class for TransactionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TransactionType"> * <complexContent> * <extension base="{http://www.opengis.net/wfs}BaseRequestType"> * <sequence> * <element ref="{http://www.opengis.net/wfs}LockId" minOccurs="0"/> * <choice maxOccurs="unbounded" minOccurs="0"> * <element ref="{http://www.opengis.net/wfs}Insert"/> * <element ref="{http://www.opengis.net/wfs}Update"/> * <element ref="{http://www.opengis.net/wfs}Delete"/> * <element ref="{http://www.opengis.net/wfs}Native"/> * </choice> * </sequence> * <attribute name="releaseAction" type="{http://www.opengis.net/wfs}AllSomeType" /> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransactionType", propOrder = { "lockId", "insertOrUpdateOrDelete" }) @XmlRootElement(name = "Transaction") public class TransactionType extends BaseRequestType implements Transaction { @XmlElement(name = "LockId") private String lockId; @XmlElements({ @XmlElement(name = "Native", type = NativeType.class), @XmlElement(name = "Update", type = UpdateElementType.class), @XmlElement(name = "Delete", type = DeleteElementType.class), @XmlElement(name = "Insert", type = InsertElementType.class) }) private List<Object> insertOrUpdateOrDelete; @XmlAttribute private AllSomeType releaseAction; public TransactionType() { } public TransactionType(final String service, final String version, final String handle, final AllSomeType releaseAction, final DeleteElementType delete) { super(service, version, handle); this.releaseAction = releaseAction; this.insertOrUpdateOrDelete = new ArrayList<Object>(); if (delete != null) { this.insertOrUpdateOrDelete.add(delete); } } public TransactionType(final String service, final String version, final String handle, final AllSomeType releaseAction, final InsertElementType insert) { super(service, version, handle); this.releaseAction = releaseAction; this.insertOrUpdateOrDelete = new ArrayList<Object>(); if (insert != null) { this.insertOrUpdateOrDelete.add(insert); } } public TransactionType(final String service, final String version, final String handle, final AllSomeType releaseAction, final UpdateElementType udpate) { super(service, version, handle); this.releaseAction = releaseAction; this.insertOrUpdateOrDelete = new ArrayList<Object>(); if (udpate != null) { this.insertOrUpdateOrDelete.add(udpate); } } /** * * In order for a client application to operate upon locked feature instances, * the Transaction request must include the LockId element. * The content of this element must be the lock identifier the client application obtained from a previous * GetFeatureWithLock or LockFeature operation. * * If the correct lock identifier is specified the Web Feature Service knows that the client application may * operate upon the locked feature instances. * * No LockId element needs to be specified to operate upon unlocked features. * * * @return * possible object is * {@link String } * */ public String getLockId() { return lockId; } /** * * In order for a client application to operate upon locked feature instances, * the Transaction request must include the LockId element. * The content of this element must be the lock identifier the client application obtained from a previous * GetFeatureWithLock or LockFeature operation. * * If the correct lock identifier is specified the Web Feature Service knows that the client application may * operate upon the locked feature instances. * * No LockId element needs to be specified to operate upon unlocked features. * * * @param value * allowed object is * {@link String } * */ public void setLockId(final String value) { this.lockId = value; } /** * Gets the value of the insertOrUpdateOrDelete property. * */ public List<Object> getInsertOrUpdateOrDelete() { if (insertOrUpdateOrDelete == null) { insertOrUpdateOrDelete = new ArrayList<Object>(); } return this.insertOrUpdateOrDelete; } @Override public List<Object> getTransactionAction() { return getInsertOrUpdateOrDelete(); } /** * Gets the value of the releaseAction property. * * @return * possible object is * {@link AllSomeType } * */ public AllSomeType getReleaseAction() { return releaseAction; } /** * Sets the value of the releaseAction property. * * @param value * allowed object is * {@link AllSomeType } * */ public void setReleaseAction(final AllSomeType value) { this.releaseAction = value; } @Override public String toString() { StringBuilder sb = new StringBuilder(super.toString()).append('\n'); if (lockId != null) { sb.append("lockId=").append(lockId).append('\n'); } if (releaseAction != null) { sb.append("releaseAction=").append(releaseAction).append('\n'); } if (insertOrUpdateOrDelete != null) { sb.append("insertOrUpdateOrDelete:").append('\n'); for (Object obj : insertOrUpdateOrDelete) { sb.append(obj).append('\n'); } } return sb.toString(); } @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof TransactionType && super.equals(object)) { final TransactionType that = (TransactionType) object; return Objects.equals(this.insertOrUpdateOrDelete, that.insertOrUpdateOrDelete) && Objects.equals(this.lockId, that.lockId) && Objects.equals(this.releaseAction, that.releaseAction); } return false; } @Override public int hashCode() { int hash = 7; hash = 37 * hash + (this.lockId != null ? this.lockId.hashCode() : 0); hash = 37 * hash + (this.insertOrUpdateOrDelete != null ? this.insertOrUpdateOrDelete.hashCode() : 0); hash = 37 * hash + (this.releaseAction != null ? this.releaseAction.hashCode() : 0); return hash; } }