Skip to content

Commit b95cfbd

Browse files
author
Bastian Ulke
committed
Add required, in Maven (but not in Eclipse) auto-generated files.
1 parent 1eeeab3 commit b95cfbd

18 files changed

Lines changed: 2675 additions & 0 deletions

File tree

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,20 @@ tools/appliance/box/
9898
.pydevproject
9999
systemvm/.pydevproject
100100
test/.pydevprojec
101+
102+
103+
104+
!plugins/network-elements/brocade-vcs/target/
105+
106+
plugins/network-elements/brocade-vcs/target/.plxarc
107+
plugins/network-elements/brocade-vcs/target/checkstyle-cachefile
108+
plugins/network-elements/brocade-vcs/target/checkstyle-checker.xml
109+
plugins/network-elements/brocade-vcs/target/checkstyle-header.txt
110+
plugins/network-elements/brocade-vcs/target/checkstyle-result.xml
111+
plugins/network-elements/brocade-vcs/target/classes/
112+
plugins/network-elements/brocade-vcs/target/generated-sources/xjc/
113+
plugins/network-elements/brocade-vcs/target/maven-archiver/
114+
plugins/network-elements/brocade-vcs/target/maven-shared-archive-resources/
115+
plugins/network-elements/brocade-vcs/target/maven-status/
116+
plugins/network-elements/brocade-vcs/target/surefire-reports/
117+
plugins/network-elements/brocade-vcs/target/test-classes
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
//
2+
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-792
3+
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Any modifications to this file will be lost upon recompilation of the source schema.
5+
// Generated on: 2015.04.29 at 05:02:19 PM MESZ
6+
//
7+
8+
9+
package com.cloud.network.schema.interfacevlan;
10+
11+
import javax.xml.bind.annotation.XmlAccessType;
12+
import javax.xml.bind.annotation.XmlAccessorType;
13+
import javax.xml.bind.annotation.XmlElement;
14+
import javax.xml.bind.annotation.XmlRootElement;
15+
import javax.xml.bind.annotation.XmlType;
16+
17+
18+
/**
19+
* <p>Java class for anonymous complex type.
20+
*
21+
* <p>The following schema fragment specifies the expected content contained within this class.
22+
*
23+
* <pre>
24+
* &lt;complexType>
25+
* &lt;complexContent>
26+
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27+
* &lt;sequence>
28+
* &lt;element ref="{urn:brocade.com:mgmt:brocade-interface}vlan"/>
29+
* &lt;/sequence>
30+
* &lt;/restriction>
31+
* &lt;/complexContent>
32+
* &lt;/complexType>
33+
* </pre>
34+
*
35+
*
36+
*/
37+
@XmlAccessorType(XmlAccessType.FIELD)
38+
@XmlType(name = "", propOrder = {
39+
"vlan"
40+
})
41+
@XmlRootElement(name = "interface")
42+
public class Interface {
43+
44+
@XmlElement(required = true)
45+
protected Vlan vlan;
46+
47+
/**
48+
* Gets the value of the vlan property.
49+
*
50+
* @return
51+
* possible object is
52+
* {@link Vlan }
53+
*
54+
*/
55+
public Vlan getVlan() {
56+
return vlan;
57+
}
58+
59+
/**
60+
* Sets the value of the vlan property.
61+
*
62+
* @param value
63+
* allowed object is
64+
* {@link Vlan }
65+
*
66+
*/
67+
public void setVlan(Vlan value) {
68+
this.vlan = value;
69+
}
70+
71+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
//
2+
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-792
3+
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Any modifications to this file will be lost upon recompilation of the source schema.
5+
// Generated on: 2015.04.29 at 05:02:19 PM MESZ
6+
//
7+
8+
9+
package com.cloud.network.schema.interfacevlan;
10+
11+
import javax.xml.bind.annotation.XmlAccessType;
12+
import javax.xml.bind.annotation.XmlAccessorType;
13+
import javax.xml.bind.annotation.XmlElement;
14+
import javax.xml.bind.annotation.XmlRootElement;
15+
import javax.xml.bind.annotation.XmlType;
16+
17+
18+
/**
19+
* <p>Java class for anonymous complex type.
20+
*
21+
* <p>The following schema fragment specifies the expected content contained within this class.
22+
*
23+
* <pre>
24+
* &lt;complexType>
25+
* &lt;complexContent>
26+
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27+
* &lt;sequence>
28+
* &lt;element ref="{urn:brocade.com:mgmt:brocade-interface}interface"/>
29+
* &lt;/sequence>
30+
* &lt;/restriction>
31+
* &lt;/complexContent>
32+
* &lt;/complexType>
33+
* </pre>
34+
*
35+
*
36+
*/
37+
@XmlAccessorType(XmlAccessType.FIELD)
38+
@XmlType(name = "", propOrder = {
39+
"_interface"
40+
})
41+
@XmlRootElement(name = "interface-vlan")
42+
public class InterfaceVlan {
43+
44+
@XmlElement(name = "interface", required = true)
45+
protected Interface _interface;
46+
47+
/**
48+
* Gets the value of the interface property.
49+
*
50+
* @return
51+
* possible object is
52+
* {@link Interface }
53+
*
54+
*/
55+
public Interface getInterface() {
56+
return _interface;
57+
}
58+
59+
/**
60+
* Sets the value of the interface property.
61+
*
62+
* @param value
63+
* allowed object is
64+
* {@link Interface }
65+
*
66+
*/
67+
public void setInterface(Interface value) {
68+
this._interface = value;
69+
}
70+
71+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
//
2+
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-792
3+
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Any modifications to this file will be lost upon recompilation of the source schema.
5+
// Generated on: 2015.04.29 at 05:02:19 PM MESZ
6+
//
7+
8+
9+
package com.cloud.network.schema.interfacevlan;
10+
11+
import javax.xml.bind.annotation.XmlRegistry;
12+
13+
14+
/**
15+
* This object contains factory methods for each
16+
* Java content interface and Java element interface
17+
* generated in the com.cloud.network.schema.interfacevlan package.
18+
* <p>An ObjectFactory allows you to programatically
19+
* construct new instances of the Java representation
20+
* for XML content. The Java representation of XML
21+
* content can consist of schema derived interfaces
22+
* and classes representing the binding of schema
23+
* type definitions, element declarations and model
24+
* groups. Factory methods for each of these are
25+
* provided in this class.
26+
*
27+
*/
28+
@XmlRegistry
29+
public class ObjectFactory {
30+
31+
32+
/**
33+
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.cloud.network.schema.interfacevlan
34+
*
35+
*/
36+
public ObjectFactory() {
37+
}
38+
39+
/**
40+
* Create an instance of {@link Vlan }
41+
*
42+
*/
43+
public Vlan createVlan() {
44+
return new Vlan();
45+
}
46+
47+
/**
48+
* Create an instance of {@link InterfaceVlan }
49+
*
50+
*/
51+
public InterfaceVlan createInterfaceVlan() {
52+
return new InterfaceVlan();
53+
}
54+
55+
/**
56+
* Create an instance of {@link Interface }
57+
*
58+
*/
59+
public Interface createInterface() {
60+
return new Interface();
61+
}
62+
63+
}
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
//
2+
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-792
3+
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Any modifications to this file will be lost upon recompilation of the source schema.
5+
// Generated on: 2015.04.29 at 05:02:19 PM MESZ
6+
//
7+
8+
9+
package com.cloud.network.schema.interfacevlan;
10+
11+
import javax.xml.bind.annotation.XmlAccessType;
12+
import javax.xml.bind.annotation.XmlAccessorType;
13+
import javax.xml.bind.annotation.XmlAttribute;
14+
import javax.xml.bind.annotation.XmlRootElement;
15+
import javax.xml.bind.annotation.XmlType;
16+
17+
18+
/**
19+
* <p>Java class for anonymous complex type.
20+
*
21+
* <p>The following schema fragment specifies the expected content contained within this class.
22+
*
23+
* <pre>
24+
* &lt;complexType>
25+
* &lt;complexContent>
26+
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27+
* &lt;sequence>
28+
* &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}int"/>
29+
* &lt;/sequence>
30+
* &lt;attribute name="operation" type="{http://www.w3.org/2001/XMLSchema}string" default="delete" />
31+
* &lt;/restriction>
32+
* &lt;/complexContent>
33+
* &lt;/complexType>
34+
* </pre>
35+
*
36+
*
37+
*/
38+
@XmlAccessorType(XmlAccessType.FIELD)
39+
@XmlType(name = "", propOrder = {
40+
"name"
41+
})
42+
@XmlRootElement(name = "vlan")
43+
public class Vlan {
44+
45+
protected int name;
46+
@XmlAttribute
47+
protected String operation;
48+
49+
/**
50+
* Gets the value of the name property.
51+
*
52+
*/
53+
public int getName() {
54+
return name;
55+
}
56+
57+
/**
58+
* Sets the value of the name property.
59+
*
60+
*/
61+
public void setName(int value) {
62+
this.name = value;
63+
}
64+
65+
/**
66+
* Gets the value of the operation property.
67+
*
68+
* @return
69+
* possible object is
70+
* {@link String }
71+
*
72+
*/
73+
public String getOperation() {
74+
if (operation == null) {
75+
return "delete";
76+
} else {
77+
return operation;
78+
}
79+
}
80+
81+
/**
82+
* Sets the value of the operation property.
83+
*
84+
* @param value
85+
* allowed object is
86+
* {@link String }
87+
*
88+
*/
89+
public void setOperation(String value) {
90+
this.operation = value;
91+
}
92+
93+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
//
2+
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-792
3+
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Any modifications to this file will be lost upon recompilation of the source schema.
5+
// Generated on: 2015.04.29 at 05:02:19 PM MESZ
6+
//
7+
8+
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:brocade.com:mgmt:brocade-interface", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
9+
package com.cloud.network.schema.interfacevlan;

0 commit comments

Comments
 (0)