All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openestate.is24.restapi.xml.common.PublishObjects Maven / Gradle / Ivy

Go to download

OpenEstate-IS24-REST is a client library for the REST-Webservice of ImmobilienScout24.de written in Java.

There is a newer version: 0.5
Show newest version

package org.openestate.is24.restapi.xml.common;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.CopyStrategy2;
import org.jvnet.jaxb2_commons.lang.CopyTo2;
import org.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="publishObject" type="{http://rest.immobilienscout24.de/schema/common/1.0}PublishObject" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "publishObject" }) @XmlRootElement(name = "publishObjects") public class PublishObjects implements Serializable, Cloneable, CopyTo2, Equals2, ToString2 { protected List publishObject; /** * Gets the value of the publishObject property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the publishObject property. * *

* For example, to add a new item, do as follows: *

     *    getPublishObject().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PublishObject } * * */ public List getPublishObject() { if (publishObject == null) { publishObject = new ArrayList(); } return this.publishObject; } public String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { { List thePublishObject; thePublishObject = (((this.publishObject!= null)&&(!this.publishObject.isEmpty()))?this.getPublishObject():null); strategy.appendField(locator, this, "publishObject", buffer, thePublishObject, ((this.publishObject!= null)&&(!this.publishObject.isEmpty()))); } return buffer; } public Object clone() { return copyTo(createNewInstance()); } public Object copyTo(Object target) { final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE; return copyTo(null, target, strategy); } public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) { final Object draftCopy = ((target == null)?createNewInstance():target); if (draftCopy instanceof PublishObjects) { final PublishObjects copy = ((PublishObjects) draftCopy); { Boolean publishObjectShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, ((this.publishObject!= null)&&(!this.publishObject.isEmpty()))); if (publishObjectShouldBeCopiedAndSet == Boolean.TRUE) { List sourcePublishObject; sourcePublishObject = (((this.publishObject!= null)&&(!this.publishObject.isEmpty()))?this.getPublishObject():null); @SuppressWarnings("unchecked") List copyPublishObject = ((List ) strategy.copy(LocatorUtils.property(locator, "publishObject", sourcePublishObject), sourcePublishObject, ((this.publishObject!= null)&&(!this.publishObject.isEmpty())))); copy.publishObject = null; if (copyPublishObject!= null) { List uniquePublishObjectl = copy.getPublishObject(); uniquePublishObjectl.addAll(copyPublishObject); } } else { if (publishObjectShouldBeCopiedAndSet == Boolean.FALSE) { copy.publishObject = null; } } } } return draftCopy; } public Object createNewInstance() { return new PublishObjects(); } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; } if (this == object) { return true; } final PublishObjects that = ((PublishObjects) object); { List lhsPublishObject; lhsPublishObject = (((this.publishObject!= null)&&(!this.publishObject.isEmpty()))?this.getPublishObject():null); List rhsPublishObject; rhsPublishObject = (((that.publishObject!= null)&&(!that.publishObject.isEmpty()))?that.getPublishObject():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "publishObject", lhsPublishObject), LocatorUtils.property(thatLocator, "publishObject", rhsPublishObject), lhsPublishObject, rhsPublishObject, ((this.publishObject!= null)&&(!this.publishObject.isEmpty())), ((that.publishObject!= null)&&(!that.publishObject.isEmpty())))) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy