Element documents
| Type: | documents |
| Namespace: | http://hudson-ci.org/xsd/hudson/2.1.0/maven/config |
Java class for documents complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="documents">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="document" type="{http://hudson-ci.org/xsd/hudson/2.1.0/maven/config}document" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<documents xmlns="http://hudson-ci.org/xsd/hudson/2.1.0/maven/config">
<document xmlns="" id="..." name="..." type="...">
<description>...</description>
<content>...</content>
<attribute name="..." value="..." />
<attribute name="..." value="...">
<!--...-->
</attribute>
<!--...more "attribute" elements...-->
</document>
<document xmlns="" id="..." name="..." type="...">
<!--...-->
</document>
<!--...more "document" elements...-->
</documents>
Example JSON
{
document : [ {
id : "...",
name : "...",
type : {
},
description : "...",
content : "...",
attribute : [ {
name : "...",
value : "..."
}, ... ]
}, ... ]
}