summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build/generated/jax-wsCache/WsServ/me/dcariotti/netsix/Richiedi.java
diff options
context:
space:
mode:
Diffstat (limited to 'Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build/generated/jax-wsCache/WsServ/me/dcariotti/netsix/Richiedi.java')
-rw-r--r--Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build/generated/jax-wsCache/WsServ/me/dcariotti/netsix/Richiedi.java79
1 files changed, 79 insertions, 0 deletions
diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build/generated/jax-wsCache/WsServ/me/dcariotti/netsix/Richiedi.java b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build/generated/jax-wsCache/WsServ/me/dcariotti/netsix/Richiedi.java
new file mode 100644
index 0000000..9632aa4
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build/generated/jax-wsCache/WsServ/me/dcariotti/netsix/Richiedi.java
@@ -0,0 +1,79 @@
+
+package me.dcariotti.netsix;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for richiedi complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="richiedi">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="episode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "richiedi", propOrder = {
+ "name",
+ "episode"
+})
+public class Richiedi {
+
+ protected String name;
+ protected int episode;
+
+ /**
+ * 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 episode property.
+ *
+ */
+ public int getEpisode() {
+ return episode;
+ }
+
+ /**
+ * Sets the value of the episode property.
+ *
+ */
+ public void setEpisode(int value) {
+ this.episode = value;
+ }
+
+}