com.ibm.rqm.xml.bind.Foldercontent Maven / Gradle / Ivy
Show all versions of demoiselle-behave-integration-alm Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.07.13 at 12:00:05 PM BRT
//
package com.ibm.rqm.xml.bind;
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.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="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fullpath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="files">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="file" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="urn" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="relativepath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="folders">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="folder" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="urn" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"fullpath",
"files",
"folders"
})
@XmlRootElement(name = "foldercontent")
public class Foldercontent {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String fullpath;
@XmlElement(required = true)
protected Foldercontent.Files files;
@XmlElement(required = true)
protected Foldercontent.Folders folders;
/**
* 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 fullpath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullpath() {
return fullpath;
}
/**
* Sets the value of the fullpath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullpath(String value) {
this.fullpath = value;
}
/**
* Gets the value of the files property.
*
* @return
* possible object is
* {@link Foldercontent.Files }
*
*/
public Foldercontent.Files getFiles() {
return files;
}
/**
* Sets the value of the files property.
*
* @param value
* allowed object is
* {@link Foldercontent.Files }
*
*/
public void setFiles(Foldercontent.Files value) {
this.files = value;
}
/**
* Gets the value of the folders property.
*
* @return
* possible object is
* {@link Foldercontent.Folders }
*
*/
public Foldercontent.Folders getFolders() {
return folders;
}
/**
* Sets the value of the folders property.
*
* @param value
* allowed object is
* {@link Foldercontent.Folders }
*
*/
public void setFolders(Foldercontent.Folders value) {
this.folders = value;
}
/**
* 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" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="urn" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="relativepath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"file"
})
public static class Files {
@XmlElement(required = true)
protected List file;
/**
* 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 Foldercontent.Files.File }
*
*
*/
public List getFile() {
if (file == null) {
file = new ArrayList();
}
return this.file;
}
/**
* 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="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="urn" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="relativepath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"urn",
"relativepath"
})
public static class File {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String urn;
@XmlElement(required = true)
protected String relativepath;
/**
* 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 urn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrn() {
return urn;
}
/**
* Sets the value of the urn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrn(String value) {
this.urn = value;
}
/**
* Gets the value of the relativepath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRelativepath() {
return relativepath;
}
/**
* Sets the value of the relativepath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRelativepath(String value) {
this.relativepath = value;
}
}
}
/**
* 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="folder" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="urn" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"folder"
})
public static class Folders {
@XmlElement(required = true)
protected List folder;
/**
* Gets the value of the folder 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 folder property.
*
*
* For example, to add a new item, do as follows:
*
* getFolder().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Foldercontent.Folders.Folder }
*
*
*/
public List getFolder() {
if (folder == null) {
folder = new ArrayList();
}
return this.folder;
}
/**
* 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="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="urn" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"urn"
})
public static class Folder {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String urn;
/**
* 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 urn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrn() {
return urn;
}
/**
* Sets the value of the urn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrn(String value) {
this.urn = value;
}
}
}
}