no.difi.xsd.asic.model._1.AsicManifest Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.04.07 at 02:26:28 PM CEST
//
package no.difi.xsd.asic.model._1;
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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="file" type="{http://difi.no/xsd/asic/model/1.0}asicFile" maxOccurs="unbounded"/>
* <element name="certificate" type="{http://difi.no/xsd/asic/model/1.0}certificate" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="rootfile" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"file",
"certificate"
})
@XmlRootElement(name = "asicManifest")
public class AsicManifest {
@XmlElement(required = true)
protected List file;
@XmlElement(required = true)
protected List certificate;
@XmlAttribute(name = "rootfile")
protected String rootfile;
/**
* Gets the value of the file 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 file property.
*
*
* For example, to add a new item, do as follows:
*
* getFile().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AsicFile }
*
*
*/
public List getFile() {
if (file == null) {
file = new ArrayList();
}
return this.file;
}
/**
* Gets the value of the certificate 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 certificate property.
*
*
* For example, to add a new item, do as follows:
*
* getCertificate().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Certificate }
*
*
*/
public List getCertificate() {
if (certificate == null) {
certificate = new ArrayList();
}
return this.certificate;
}
/**
* Gets the value of the rootfile property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRootfile() {
return rootfile;
}
/**
* Sets the value of the rootfile property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRootfile(String value) {
this.rootfile = value;
}
}