This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CICMMetadata/java/generated/ScanProcessingType.java

129 lines
3.2 KiB
Java
Raw Normal View History

2015-11-07 03:13:57 +00:00
//
2019-04-22 23:44:22 +01:00
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
2019-04-23 00:10:05 +01:00
// Generado el: 2019.04.22 a las 11:59:16 PM BST
2015-11-07 03:13:57 +00:00
//
package generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Information about any scan processing done
2019-04-22 23:44:22 +01:00
*
2015-11-07 03:13:57 +00:00
*
* <p>Clase Java para ScanProcessingType complex type.
2015-11-07 03:13:57 +00:00
*
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
2015-11-07 03:13:57 +00:00
*
* <pre>
2019-04-22 23:44:22 +01:00
* &lt;complexType name="ScanProcessingType"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
2015-11-07 03:13:57 +00:00
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ScanProcessingType", propOrder = {
"author",
"software",
"softwareVersion"
})
public class ScanProcessingType {
@XmlElement(name = "Author", required = true)
protected String author;
@XmlElement(name = "Software", required = true)
protected String software;
@XmlElement(name = "SoftwareVersion", required = true)
protected String softwareVersion;
/**
* Obtiene el valor de la propiedad author.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthor() {
return author;
}
/**
* Define el valor de la propiedad author.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthor(String value) {
this.author = value;
}
/**
* Obtiene el valor de la propiedad software.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
public String getSoftware() {
return software;
}
/**
* Define el valor de la propiedad software.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSoftware(String value) {
this.software = value;
}
/**
* Obtiene el valor de la propiedad softwareVersion.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
public String getSoftwareVersion() {
return softwareVersion;
}
/**
* Define el valor de la propiedad softwareVersion.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSoftwareVersion(String value) {
this.softwareVersion = value;
}
}