Skip to content
This repository was archived by the owner on Oct 26, 2022. It is now read-only.

Commit 8c242e7

Browse files
committed
Added debug messages
1 parent 24227ee commit 8c242e7

File tree

8 files changed

+517
-0
lines changed

8 files changed

+517
-0
lines changed
Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
//
2+
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b01 generiert
3+
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
5+
// Generiert: 2016.12.19 um 04:44:59 PM CET
6+
//
7+
8+
9+
package de.thm.arsnova.connector.model;
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.XmlElement;
15+
import javax.xml.bind.annotation.XmlType;
16+
17+
18+
/**
19+
* <p>Java-Klasse für Course complex type.
20+
*
21+
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
22+
*
23+
* <pre>
24+
* &lt;complexType name="Course">
25+
* &lt;complexContent>
26+
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27+
* &lt;sequence>
28+
* &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
29+
* &lt;element name="fullname" type="{http://www.w3.org/2001/XMLSchema}string"/>
30+
* &lt;element name="shortname" type="{http://www.w3.org/2001/XMLSchema}string"/>
31+
* &lt;element ref="{http://arsnova.thm.de/connector/model}membership"/>
32+
* &lt;/sequence>
33+
* &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
34+
* &lt;/restriction>
35+
* &lt;/complexContent>
36+
* &lt;/complexType>
37+
* </pre>
38+
*
39+
*
40+
*/
41+
@XmlAccessorType(XmlAccessType.FIELD)
42+
@XmlType(name = "Course", propOrder = {
43+
"id",
44+
"fullname",
45+
"shortname",
46+
"membership"
47+
})
48+
public class Course {
49+
50+
@XmlElement(required = true)
51+
protected String id;
52+
@XmlElement(required = true)
53+
protected String fullname;
54+
@XmlElement(required = true)
55+
protected String shortname;
56+
@XmlElement(required = true)
57+
protected Membership membership;
58+
@XmlAttribute(name = "type")
59+
protected String type;
60+
61+
/**
62+
* Ruft den Wert der id-Eigenschaft ab.
63+
*
64+
* @return
65+
* possible object is
66+
* {@link String }
67+
*
68+
*/
69+
public String getId() {
70+
return id;
71+
}
72+
73+
/**
74+
* Legt den Wert der id-Eigenschaft fest.
75+
*
76+
* @param value
77+
* allowed object is
78+
* {@link String }
79+
*
80+
*/
81+
public void setId(String value) {
82+
this.id = value;
83+
}
84+
85+
/**
86+
* Ruft den Wert der fullname-Eigenschaft ab.
87+
*
88+
* @return
89+
* possible object is
90+
* {@link String }
91+
*
92+
*/
93+
public String getFullname() {
94+
return fullname;
95+
}
96+
97+
/**
98+
* Legt den Wert der fullname-Eigenschaft fest.
99+
*
100+
* @param value
101+
* allowed object is
102+
* {@link String }
103+
*
104+
*/
105+
public void setFullname(String value) {
106+
this.fullname = value;
107+
}
108+
109+
/**
110+
* Ruft den Wert der shortname-Eigenschaft ab.
111+
*
112+
* @return
113+
* possible object is
114+
* {@link String }
115+
*
116+
*/
117+
public String getShortname() {
118+
return shortname;
119+
}
120+
121+
/**
122+
* Legt den Wert der shortname-Eigenschaft fest.
123+
*
124+
* @param value
125+
* allowed object is
126+
* {@link String }
127+
*
128+
*/
129+
public void setShortname(String value) {
130+
this.shortname = value;
131+
}
132+
133+
/**
134+
* Ruft den Wert der membership-Eigenschaft ab.
135+
*
136+
* @return
137+
* possible object is
138+
* {@link Membership }
139+
*
140+
*/
141+
public Membership getMembership() {
142+
return membership;
143+
}
144+
145+
/**
146+
* Legt den Wert der membership-Eigenschaft fest.
147+
*
148+
* @param value
149+
* allowed object is
150+
* {@link Membership }
151+
*
152+
*/
153+
public void setMembership(Membership value) {
154+
this.membership = value;
155+
}
156+
157+
/**
158+
* Ruft den Wert der type-Eigenschaft ab.
159+
*
160+
* @return
161+
* possible object is
162+
* {@link String }
163+
*
164+
*/
165+
public String getType() {
166+
return type;
167+
}
168+
169+
/**
170+
* Legt den Wert der type-Eigenschaft fest.
171+
*
172+
* @param value
173+
* allowed object is
174+
* {@link String }
175+
*
176+
*/
177+
public void setType(String value) {
178+
this.type = value;
179+
}
180+
181+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
//
2+
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b01 generiert
3+
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
5+
// Generiert: 2016.12.19 um 04:44:59 PM CET
6+
//
7+
8+
9+
package de.thm.arsnova.connector.model;
10+
11+
import java.util.ArrayList;
12+
import java.util.List;
13+
import javax.xml.bind.annotation.XmlAccessType;
14+
import javax.xml.bind.annotation.XmlAccessorType;
15+
import javax.xml.bind.annotation.XmlRootElement;
16+
import javax.xml.bind.annotation.XmlType;
17+
18+
19+
/**
20+
* <p>Java-Klasse für anonymous complex type.
21+
*
22+
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
23+
*
24+
* <pre>
25+
* &lt;complexType>
26+
* &lt;complexContent>
27+
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28+
* &lt;sequence>
29+
* &lt;element name="course" type="{http://arsnova.thm.de/connector/model}Course" maxOccurs="unbounded" minOccurs="0"/>
30+
* &lt;/sequence>
31+
* &lt;/restriction>
32+
* &lt;/complexContent>
33+
* &lt;/complexType>
34+
* </pre>
35+
*
36+
*
37+
*/
38+
@XmlAccessorType(XmlAccessType.FIELD)
39+
@XmlType(name = "", propOrder = {
40+
"course"
41+
})
42+
@XmlRootElement(name = "courses")
43+
public class Courses {
44+
45+
protected List<Course> course;
46+
47+
/**
48+
* Gets the value of the course property.
49+
*
50+
* <p>
51+
* This accessor method returns a reference to the live list,
52+
* not a snapshot. Therefore any modification you make to the
53+
* returned list will be present inside the JAXB object.
54+
* This is why there is not a <CODE>set</CODE> method for the course property.
55+
*
56+
* <p>
57+
* For example, to add a new item, do as follows:
58+
* <pre>
59+
* getCourse().add(newItem);
60+
* </pre>
61+
*
62+
*
63+
* <p>
64+
* Objects of the following type(s) are allowed in the list
65+
* {@link Course }
66+
*
67+
*
68+
*/
69+
public List<Course> getCourse() {
70+
if (course == null) {
71+
course = new ArrayList<Course>();
72+
}
73+
return this.course;
74+
}
75+
76+
}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
//
2+
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b01 generiert
3+
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4+
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
5+
// Generiert: 2016.12.19 um 04:44:59 PM CET
6+
//
7+
8+
9+
package de.thm.arsnova.connector.model;
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-Klasse für anonymous complex type.
20+
*
21+
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
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="member" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
29+
* &lt;element name="userrole" type="{http://arsnova.thm.de/connector/model}UserRole"/>
30+
* &lt;/sequence>
31+
* &lt;/restriction>
32+
* &lt;/complexContent>
33+
* &lt;/complexType>
34+
* </pre>
35+
*
36+
*
37+
*/
38+
@XmlAccessorType(XmlAccessType.FIELD)
39+
@XmlType(name = "", propOrder = {
40+
"member",
41+
"userrole"
42+
})
43+
@XmlRootElement(name = "membership")
44+
public class Membership {
45+
46+
protected boolean member;
47+
@XmlElement(required = true)
48+
protected UserRole userrole;
49+
50+
/**
51+
* Ruft den Wert der member-Eigenschaft ab.
52+
*
53+
*/
54+
public boolean isMember() {
55+
return member;
56+
}
57+
58+
/**
59+
* Legt den Wert der member-Eigenschaft fest.
60+
*
61+
*/
62+
public void setMember(boolean value) {
63+
this.member = value;
64+
}
65+
66+
/**
67+
* Ruft den Wert der userrole-Eigenschaft ab.
68+
*
69+
* @return
70+
* possible object is
71+
* {@link UserRole }
72+
*
73+
*/
74+
public UserRole getUserrole() {
75+
return userrole;
76+
}
77+
78+
/**
79+
* Legt den Wert der userrole-Eigenschaft fest.
80+
*
81+
* @param value
82+
* allowed object is
83+
* {@link UserRole }
84+
*
85+
*/
86+
public void setUserrole(UserRole value) {
87+
this.userrole = value;
88+
}
89+
90+
}

0 commit comments

Comments
 (0)