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

org.gs4tr.projectdirector.model.dto.xsd.ResourceInfo Maven / Gradle / Ivy

Go to download

The newest version!

package org.gs4tr.projectdirector.model.dto.xsd;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ResourceInfo complex type. * *

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

 * <complexType name="ResourceInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="classifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="clientIdentifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="encoding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="md5Checksum" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="mimeType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="resourceInfoId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="size" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="type" type="{http://dto.model.projectdirector.gs4tr.org/xsd}ResourceType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceInfo", propOrder = { "classifier", "clientIdentifier", "description", "encoding", "md5Checksum", "mimeType", "name", "path", "resourceInfoId", "size", "type" }) public class ResourceInfo { @XmlElement(required = true, nillable = true) protected String classifier; @XmlElement(required = true, nillable = true) protected String clientIdentifier; @XmlElement(required = true, nillable = true) protected String description; @XmlElement(required = true, nillable = true) protected String encoding; @XmlElement(required = true, nillable = true) protected String md5Checksum; @XmlElement(required = true, nillable = true) protected String mimeType; @XmlElement(required = true, nillable = true) protected String name; @XmlElement(required = true, nillable = true) protected String path; @XmlElement(required = true, type = Long.class, nillable = true) protected Long resourceInfoId; @XmlElement(required = true, type = Long.class, nillable = true) protected Long size; @XmlElement(required = true, nillable = true) protected ResourceType type; /** * Gets the value of the classifier property. * * @return * possible object is * {@link String } * */ public String getClassifier() { return classifier; } /** * Sets the value of the classifier property. * * @param value * allowed object is * {@link String } * */ public void setClassifier(String value) { this.classifier = value; } /** * Gets the value of the clientIdentifier property. * * @return * possible object is * {@link String } * */ public String getClientIdentifier() { return clientIdentifier; } /** * Sets the value of the clientIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setClientIdentifier(String value) { this.clientIdentifier = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the encoding property. * * @return * possible object is * {@link String } * */ public String getEncoding() { return encoding; } /** * Sets the value of the encoding property. * * @param value * allowed object is * {@link String } * */ public void setEncoding(String value) { this.encoding = value; } /** * Gets the value of the md5Checksum property. * * @return * possible object is * {@link String } * */ public String getMd5Checksum() { return md5Checksum; } /** * Sets the value of the md5Checksum property. * * @param value * allowed object is * {@link String } * */ public void setMd5Checksum(String value) { this.md5Checksum = value; } /** * Gets the value of the mimeType property. * * @return * possible object is * {@link String } * */ public String getMimeType() { return mimeType; } /** * Sets the value of the mimeType property. * * @param value * allowed object is * {@link String } * */ public void setMimeType(String value) { this.mimeType = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Gets the value of the resourceInfoId property. * * @return * possible object is * {@link Long } * */ public Long getResourceInfoId() { return resourceInfoId; } /** * Sets the value of the resourceInfoId property. * * @param value * allowed object is * {@link Long } * */ public void setResourceInfoId(Long value) { this.resourceInfoId = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link Long } * */ public Long getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link Long } * */ public void setSize(Long value) { this.size = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link ResourceType } * */ public ResourceType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link ResourceType } * */ public void setType(ResourceType value) { this.type = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy