// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.04.19 um 09:36:45 AM CEST // package de.immobilienscout24.rest.schema.offer.realestateproject._1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * Eintrag in Realestate-Project * * <p>Java-Klasse fr RealEstateProjectEntry complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="RealEstateProjectEntry"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="messageCode" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="0" minOccurs="0"/> * <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="0" minOccurs="0"/> * <element name="realEstateId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="realEstateExternalId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RealEstateProjectEntry", propOrder = { "realEstateId", "realEstateExternalId" }) public class RealEstateProjectEntry { protected Long realEstateId; protected String realEstateExternalId; @XmlAttribute(name = "id") protected Long id; /** * Ruft den Wert der realEstateId-Eigenschaft ab. * * @return * possible object is * {@link Long } * */ public Long getRealEstateId() { return realEstateId; } /** * Legt den Wert der realEstateId-Eigenschaft fest. * * @param value * allowed object is * {@link Long } * */ public void setRealEstateId(Long value) { this.realEstateId = value; } /** * Ruft den Wert der realEstateExternalId-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getRealEstateExternalId() { return realEstateExternalId; } /** * Legt den Wert der realEstateExternalId-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setRealEstateExternalId(String value) { this.realEstateExternalId = value; } /** * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } }