package com.rapid_i.repository.wsimport; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for entryResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="entryResponse"> * <complexContent> * <extension base="{http://service.web.rapidanalytics.de/}response"> * <sequence> * <element name="date" type="{http://www.w3.org/2001/XMLSchema}long"/> * <element name="ioObjectClassName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="latestRevision" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="size" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="user" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "entryResponse", propOrder = { "date", "ioObjectClassName", "latestRevision", "location", "size", "type", "user" }) public class EntryResponse extends Response { protected long date; protected String ioObjectClassName; protected int latestRevision; protected String location; protected int size; protected String type; protected String user; /** * Gets the value of the date property. * */ public long getDate() { return date; } /** * Sets the value of the date property. * */ public void setDate(long value) { this.date = value; } /** * Gets the value of the ioObjectClassName property. * * @return * possible object is * {@link String } * */ public String getIoObjectClassName() { return ioObjectClassName; } /** * Sets the value of the ioObjectClassName property. * * @param value * allowed object is * {@link String } * */ public void setIoObjectClassName(String value) { this.ioObjectClassName = value; } /** * Gets the value of the latestRevision property. * */ public int getLatestRevision() { return latestRevision; } /** * Sets the value of the latestRevision property. * */ public void setLatestRevision(int value) { this.latestRevision = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } /** * Gets the value of the size property. * */ public int getSize() { return size; } /** * Sets the value of the size property. * */ public void setSize(int value) { this.size = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the user property. * * @return * possible object is * {@link String } * */ public String getUser() { return user; } /** * Sets the value of the user property. * * @param value * allowed object is * {@link String } * */ public void setUser(String value) { this.user = value; } }