Java class for answer complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="answer"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> + * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="countvotes" type="{http://www.w3.org/2001/XMLSchema}int"/> + * <element name="createdtime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/> + * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "answer", propOrder = { + "aid", + "content", + "countvotes", + "createdtime", + "qid", + "uid" +}) +public class Answer { + + protected Integer aid; + protected String content; + protected int countvotes; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar createdtime; + protected int qid; + protected int uid; + + /** + * Gets the value of the aid property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAid() { + return aid; + } + + /** + * Sets the value of the aid property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAid(Integer value) { + this.aid = value; + } + + /** + * Gets the value of the content property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContent() { + return content; + } + + /** + * Sets the value of the content property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContent(String value) { + this.content = value; + } + + /** + * Gets the value of the countvotes property. + * + */ + public int getCountvotes() { + return countvotes; + } + + /** + * Sets the value of the countvotes property. + * + */ + public void setCountvotes(int value) { + this.countvotes = value; + } + + /** + * Gets the value of the createdtime property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getCreatedtime() { + return createdtime; + } + + /** + * Sets the value of the createdtime property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setCreatedtime(XMLGregorianCalendar value) { + this.createdtime = value; + } + + /** + * Gets the value of the qid property. + * + */ + public int getQid() { + return qid; + } + + /** + * Sets the value of the qid property. + * + */ + public void setQid(int value) { + this.qid = value; + } + + /** + * Gets the value of the uid property. + * + */ + public int getUid() { + return uid; + } + + /** + * Sets the value of the uid property. + * + */ + public void setUid(int value) { + this.uid = value; + } + +} diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/AnswerWS.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/AnswerWS.java new file mode 100644 index 00000000..50175037 --- /dev/null +++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/AnswerWS.java @@ -0,0 +1,151 @@ + +package answer; + +import java.util.List; +import javax.jws.WebMethod; +import javax.jws.WebParam; +import javax.jws.WebResult; +import javax.jws.WebService; +import javax.xml.bind.annotation.XmlSeeAlso; +import javax.xml.ws.Action; +import javax.xml.ws.RequestWrapper; +import javax.xml.ws.ResponseWrapper; + + +/** + * This class was generated by the JAX-WS RI. + * JAX-WS RI 2.2.11-b150120.1832 + * Generated source version: 2.2 + * + */ +@WebService(name = "Answer_WS", targetNamespace = "http://webservice/") +@XmlSeeAlso({ + ObjectFactory.class +}) +public interface AnswerWS { + + + /** + * + * @param aid + * @param token + * @return + * returns java.lang.Boolean + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "deleteAllVoteAnswer", targetNamespace = "http://webservice/", className = "answer.DeleteAllVoteAnswer") + @ResponseWrapper(localName = "deleteAllVoteAnswerResponse", targetNamespace = "http://webservice/", className = "answer.DeleteAllVoteAnswerResponse") + @Action(input = "http://webservice/Answer_WS/deleteAllVoteAnswerRequest", output = "http://webservice/Answer_WS/deleteAllVoteAnswerResponse") + public Boolean deleteAllVoteAnswer( + @WebParam(name = "token", targetNamespace = "") + String token, + @WebParam(name = "aid", targetNamespace = "") + int aid); + + /** + * + * @param qid + * @return + * returns java.lang.Integer + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "getCountAnswer", targetNamespace = "http://webservice/", className = "answer.GetCountAnswer") + @ResponseWrapper(localName = "getCountAnswerResponse", targetNamespace = "http://webservice/", className = "answer.GetCountAnswerResponse") + @Action(input = "http://webservice/Answer_WS/getCountAnswerRequest", output = "http://webservice/Answer_WS/getCountAnswerResponse") + public Integer getCountAnswer( + @WebParam(name = "qid", targetNamespace = "") + int qid); + + /** + * + * @param aid + * @return + * returns java.lang.Integer + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "getVotesAnswer", targetNamespace = "http://webservice/", className = "answer.GetVotesAnswer") + @ResponseWrapper(localName = "getVotesAnswerResponse", targetNamespace = "http://webservice/", className = "answer.GetVotesAnswerResponse") + @Action(input = "http://webservice/Answer_WS/getVotesAnswerRequest", output = "http://webservice/Answer_WS/getVotesAnswerResponse") + public Integer getVotesAnswer( + @WebParam(name = "aid", targetNamespace = "") + int aid); + + /** + * + * @param uid + * @param aid + * @param status + * @return + * returns java.lang.Boolean + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "hasVotedAnswer", targetNamespace = "http://webservice/", className = "answer.HasVotedAnswer") + @ResponseWrapper(localName = "hasVotedAnswerResponse", targetNamespace = "http://webservice/", className = "answer.HasVotedAnswerResponse") + @Action(input = "http://webservice/Answer_WS/hasVotedAnswerRequest", output = "http://webservice/Answer_WS/hasVotedAnswerResponse") + public Boolean hasVotedAnswer( + @WebParam(name = "aid", targetNamespace = "") + int aid, + @WebParam(name = "uid", targetNamespace = "") + int uid, + @WebParam(name = "status", targetNamespace = "") + int status); + + /** + * + * @param answer + * @param token + * @return + * returns java.lang.Integer + */ + @WebMethod + @WebResult(targetNamespace = "") + @RequestWrapper(localName = "createAnswer", targetNamespace = "http://webservice/", className = "answer.CreateAnswer") + @ResponseWrapper(localName = "createAnswerResponse", targetNamespace = "http://webservice/", className = "answer.CreateAnswerResponse") + @Action(input = "http://webservice/Answer_WS/createAnswerRequest", output = "http://webservice/Answer_WS/createAnswerResponse") + public Integer createAnswer( + @WebParam(name = "token", targetNamespace = "") + String token, + @WebParam(name = "answer", targetNamespace = "") + Answer answer); + + /** + * + * @param qid + * @return + * returns java.util.List
features
parameter will have their default values.
+ * @return
+ * returns AnswerWS
+ */
+ @WebEndpoint(name = "Answer_WSPort")
+ public AnswerWS getAnswerWSPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://webservice/", "Answer_WSPort"), AnswerWS.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (ANSWERWS_EXCEPTION!= null) {
+ throw ANSWERWS_EXCEPTION;
+ }
+ return ANSWERWS_WSDL_LOCATION;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/CreateAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/CreateAnswer.java
new file mode 100644
index 00000000..8c3055c2
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/CreateAnswer.java
@@ -0,0 +1,87 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * Java class for createAnswer complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="createAnswer"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="answer" type="{http://webservice/}answer" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "createAnswer", propOrder = { + "token", + "answer" +}) +public class CreateAnswer { + + protected String token; + protected Answer answer; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the answer property. + * + * @return + * possible object is + * {@link Answer } + * + */ + public Answer getAnswer() { + return answer; + } + + /** + * Sets the value of the answer property. + * + * @param value + * allowed object is + * {@link Answer } + * + */ + public void setAnswer(Answer value) { + this.answer = value; + } + +} diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/CreateAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/CreateAnswerResponse.java new file mode 100644 index 00000000..a79289be --- /dev/null +++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/CreateAnswerResponse.java @@ -0,0 +1,62 @@ + +package answer; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for createAnswerResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="createAnswerResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "createAnswerResponse", propOrder = { + "_return" +}) +public class CreateAnswerResponse { + + @XmlElement(name = "return") + protected Integer _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setReturn(Integer value) { + this._return = value; + } + +} diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/DeleteAllVoteAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/DeleteAllVoteAnswer.java new file mode 100644 index 00000000..adef8cbf --- /dev/null +++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/DeleteAllVoteAnswer.java @@ -0,0 +1,79 @@ + +package answer; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for deleteAllVoteAnswer complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="deleteAllVoteAnswer"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "deleteAllVoteAnswer", propOrder = { + "token", + "aid" +}) +public class DeleteAllVoteAnswer { + + protected String token; + protected int aid; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the aid property. + * + */ + public int getAid() { + return aid; + } + + /** + * Sets the value of the aid property. + * + */ + public void setAid(int value) { + this.aid = value; + } + +} diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/DeleteAllVoteAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/DeleteAllVoteAnswerResponse.java new file mode 100644 index 00000000..f47c4aad --- /dev/null +++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/DeleteAllVoteAnswerResponse.java @@ -0,0 +1,62 @@ + +package answer; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for deleteAllVoteAnswerResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="deleteAllVoteAnswerResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "deleteAllVoteAnswerResponse", propOrder = { + "_return" +}) +public class DeleteAllVoteAnswerResponse { + + @XmlElement(name = "return") + protected Boolean _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setReturn(Boolean value) { + this._return = value; + } + +} diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetAnswers.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetAnswers.java new file mode 100644 index 00000000..3c30b164 --- /dev/null +++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetAnswers.java @@ -0,0 +1,52 @@ + +package answer; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for getAnswers complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="getAnswers"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "getAnswers", propOrder = { + "qid" +}) +public class GetAnswers { + + protected int qid; + + /** + * Gets the value of the qid property. + * + */ + public int getQid() { + return qid; + } + + /** + * Sets the value of the qid property. + * + */ + public void setQid(int value) { + this.qid = value; + } + +} diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetAnswersResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetAnswersResponse.java new file mode 100644 index 00000000..34381f9f --- /dev/null +++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetAnswersResponse.java @@ -0,0 +1,69 @@ + +package answer; + +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.XmlType; + + +/** + *
Java class for getAnswersResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="getAnswersResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://webservice/}answer" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "getAnswersResponse", propOrder = { + "_return" +}) +public class GetAnswersResponse { + + @XmlElement(name = "return") + protected List
+ * 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 return property.
+ *
+ *
+ * For example, to add a new item, do as follows: + *
+ * getReturn().add(newItem); + *+ * + * + *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Answer }
+ *
+ *
+ */
+ public List Java class for getCountAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getCountAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _Answer_QNAME = new QName("http://webservice/", "answer");
+ private final static QName _CreateAnswer_QNAME = new QName("http://webservice/", "createAnswer");
+ private final static QName _CreateAnswerResponse_QNAME = new QName("http://webservice/", "createAnswerResponse");
+ private final static QName _DeleteAllVoteAnswer_QNAME = new QName("http://webservice/", "deleteAllVoteAnswer");
+ private final static QName _DeleteAllVoteAnswerResponse_QNAME = new QName("http://webservice/", "deleteAllVoteAnswerResponse");
+ private final static QName _GetAnswers_QNAME = new QName("http://webservice/", "getAnswers");
+ private final static QName _GetAnswersResponse_QNAME = new QName("http://webservice/", "getAnswersResponse");
+ private final static QName _GetCountAnswer_QNAME = new QName("http://webservice/", "getCountAnswer");
+ private final static QName _GetCountAnswerResponse_QNAME = new QName("http://webservice/", "getCountAnswerResponse");
+ private final static QName _GetVotesAnswer_QNAME = new QName("http://webservice/", "getVotesAnswer");
+ private final static QName _GetVotesAnswerResponse_QNAME = new QName("http://webservice/", "getVotesAnswerResponse");
+ private final static QName _HasVotedAnswer_QNAME = new QName("http://webservice/", "hasVotedAnswer");
+ private final static QName _HasVotedAnswerResponse_QNAME = new QName("http://webservice/", "hasVotedAnswerResponse");
+ private final static QName _VoteAnswer_QNAME = new QName("http://webservice/", "voteAnswer");
+ private final static QName _VoteAnswerResponse_QNAME = new QName("http://webservice/", "voteAnswerResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: answer
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link Answer }
+ *
+ */
+ public Answer createAnswer() {
+ return new Answer();
+ }
+
+ /**
+ * Create an instance of {@link CreateAnswer }
+ *
+ */
+ public CreateAnswer createCreateAnswer() {
+ return new CreateAnswer();
+ }
+
+ /**
+ * Create an instance of {@link CreateAnswerResponse }
+ *
+ */
+ public CreateAnswerResponse createCreateAnswerResponse() {
+ return new CreateAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteAnswer }
+ *
+ */
+ public DeleteAllVoteAnswer createDeleteAllVoteAnswer() {
+ return new DeleteAllVoteAnswer();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteAnswerResponse }
+ *
+ */
+ public DeleteAllVoteAnswerResponse createDeleteAllVoteAnswerResponse() {
+ return new DeleteAllVoteAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetAnswers }
+ *
+ */
+ public GetAnswers createGetAnswers() {
+ return new GetAnswers();
+ }
+
+ /**
+ * Create an instance of {@link GetAnswersResponse }
+ *
+ */
+ public GetAnswersResponse createGetAnswersResponse() {
+ return new GetAnswersResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetCountAnswer }
+ *
+ */
+ public GetCountAnswer createGetCountAnswer() {
+ return new GetCountAnswer();
+ }
+
+ /**
+ * Create an instance of {@link GetCountAnswerResponse }
+ *
+ */
+ public GetCountAnswerResponse createGetCountAnswerResponse() {
+ return new GetCountAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesAnswer }
+ *
+ */
+ public GetVotesAnswer createGetVotesAnswer() {
+ return new GetVotesAnswer();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesAnswerResponse }
+ *
+ */
+ public GetVotesAnswerResponse createGetVotesAnswerResponse() {
+ return new GetVotesAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedAnswer }
+ *
+ */
+ public HasVotedAnswer createHasVotedAnswer() {
+ return new HasVotedAnswer();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedAnswerResponse }
+ *
+ */
+ public HasVotedAnswerResponse createHasVotedAnswerResponse() {
+ return new HasVotedAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link VoteAnswer }
+ *
+ */
+ public VoteAnswer createVoteAnswer() {
+ return new VoteAnswer();
+ }
+
+ /**
+ * Create an instance of {@link VoteAnswerResponse }
+ *
+ */
+ public VoteAnswerResponse createVoteAnswerResponse() {
+ return new VoteAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Answer }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://webservice/", name = "answer")
+ public JAXBElement Java class for voteAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for voteAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for listQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for listQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Question }
+ *
+ *
+ */
+ public List An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _CreateQuestion_QNAME = new QName("http://webservice/", "createQuestion");
+ private final static QName _CreateQuestionResponse_QNAME = new QName("http://webservice/", "createQuestionResponse");
+ private final static QName _DeleteAllVoteQuestion_QNAME = new QName("http://webservice/", "deleteAllVoteQuestion");
+ private final static QName _DeleteAllVoteQuestionResponse_QNAME = new QName("http://webservice/", "deleteAllVoteQuestionResponse");
+ private final static QName _DeleteQuestion_QNAME = new QName("http://webservice/", "deleteQuestion");
+ private final static QName _DeleteQuestionResponse_QNAME = new QName("http://webservice/", "deleteQuestionResponse");
+ private final static QName _GetQuestion_QNAME = new QName("http://webservice/", "getQuestion");
+ private final static QName _GetQuestionResponse_QNAME = new QName("http://webservice/", "getQuestionResponse");
+ private final static QName _GetVotesQuestion_QNAME = new QName("http://webservice/", "getVotesQuestion");
+ private final static QName _GetVotesQuestionResponse_QNAME = new QName("http://webservice/", "getVotesQuestionResponse");
+ private final static QName _HasVotedQuestion_QNAME = new QName("http://webservice/", "hasVotedQuestion");
+ private final static QName _HasVotedQuestionResponse_QNAME = new QName("http://webservice/", "hasVotedQuestionResponse");
+ private final static QName _ListQuestion_QNAME = new QName("http://webservice/", "listQuestion");
+ private final static QName _ListQuestionResponse_QNAME = new QName("http://webservice/", "listQuestionResponse");
+ private final static QName _Question_QNAME = new QName("http://webservice/", "question");
+ private final static QName _SearchQuestion_QNAME = new QName("http://webservice/", "searchQuestion");
+ private final static QName _SearchQuestionResponse_QNAME = new QName("http://webservice/", "searchQuestionResponse");
+ private final static QName _UpdateQuestion_QNAME = new QName("http://webservice/", "updateQuestion");
+ private final static QName _UpdateQuestionResponse_QNAME = new QName("http://webservice/", "updateQuestionResponse");
+ private final static QName _VoteQuestion_QNAME = new QName("http://webservice/", "voteQuestion");
+ private final static QName _VoteQuestionResponse_QNAME = new QName("http://webservice/", "voteQuestionResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: question
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link CreateQuestion }
+ *
+ */
+ public CreateQuestion createCreateQuestion() {
+ return new CreateQuestion();
+ }
+
+ /**
+ * Create an instance of {@link CreateQuestionResponse }
+ *
+ */
+ public CreateQuestionResponse createCreateQuestionResponse() {
+ return new CreateQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteQuestion }
+ *
+ */
+ public DeleteAllVoteQuestion createDeleteAllVoteQuestion() {
+ return new DeleteAllVoteQuestion();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteQuestionResponse }
+ *
+ */
+ public DeleteAllVoteQuestionResponse createDeleteAllVoteQuestionResponse() {
+ return new DeleteAllVoteQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteQuestion }
+ *
+ */
+ public DeleteQuestion createDeleteQuestion() {
+ return new DeleteQuestion();
+ }
+
+ /**
+ * Create an instance of {@link DeleteQuestionResponse }
+ *
+ */
+ public DeleteQuestionResponse createDeleteQuestionResponse() {
+ return new DeleteQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetQuestion }
+ *
+ */
+ public GetQuestion createGetQuestion() {
+ return new GetQuestion();
+ }
+
+ /**
+ * Create an instance of {@link GetQuestionResponse }
+ *
+ */
+ public GetQuestionResponse createGetQuestionResponse() {
+ return new GetQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesQuestion }
+ *
+ */
+ public GetVotesQuestion createGetVotesQuestion() {
+ return new GetVotesQuestion();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesQuestionResponse }
+ *
+ */
+ public GetVotesQuestionResponse createGetVotesQuestionResponse() {
+ return new GetVotesQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedQuestion }
+ *
+ */
+ public HasVotedQuestion createHasVotedQuestion() {
+ return new HasVotedQuestion();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedQuestionResponse }
+ *
+ */
+ public HasVotedQuestionResponse createHasVotedQuestionResponse() {
+ return new HasVotedQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link ListQuestion }
+ *
+ */
+ public ListQuestion createListQuestion() {
+ return new ListQuestion();
+ }
+
+ /**
+ * Create an instance of {@link ListQuestionResponse }
+ *
+ */
+ public ListQuestionResponse createListQuestionResponse() {
+ return new ListQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link Question }
+ *
+ */
+ public Question createQuestion() {
+ return new Question();
+ }
+
+ /**
+ * Create an instance of {@link SearchQuestion }
+ *
+ */
+ public SearchQuestion createSearchQuestion() {
+ return new SearchQuestion();
+ }
+
+ /**
+ * Create an instance of {@link SearchQuestionResponse }
+ *
+ */
+ public SearchQuestionResponse createSearchQuestionResponse() {
+ return new SearchQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link UpdateQuestion }
+ *
+ */
+ public UpdateQuestion createUpdateQuestion() {
+ return new UpdateQuestion();
+ }
+
+ /**
+ * Create an instance of {@link UpdateQuestionResponse }
+ *
+ */
+ public UpdateQuestionResponse createUpdateQuestionResponse() {
+ return new UpdateQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link VoteQuestion }
+ *
+ */
+ public VoteQuestion createVoteQuestion() {
+ return new VoteQuestion();
+ }
+
+ /**
+ * Create an instance of {@link VoteQuestionResponse }
+ *
+ */
+ public VoteQuestionResponse createVoteQuestionResponse() {
+ return new VoteQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link CreateQuestion }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://webservice/", name = "createQuestion")
+ public JAXBElement Java class for question complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for searchQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for searchQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Question }
+ *
+ *
+ */
+ public List Java class for updateQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for updateQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for voteQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for voteQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for checkEmailUser complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for checkEmailUserResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createUser complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createUserResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getNameByUid complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getNameByUidResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getUserById complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getUserByIdResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _CheckEmailUser_QNAME = new QName("http://webservice/", "checkEmailUser");
+ private final static QName _CheckEmailUserResponse_QNAME = new QName("http://webservice/", "checkEmailUserResponse");
+ private final static QName _CreateUser_QNAME = new QName("http://webservice/", "createUser");
+ private final static QName _CreateUserResponse_QNAME = new QName("http://webservice/", "createUserResponse");
+ private final static QName _GetNameByUid_QNAME = new QName("http://webservice/", "getNameByUid");
+ private final static QName _GetNameByUidResponse_QNAME = new QName("http://webservice/", "getNameByUidResponse");
+ private final static QName _GetUserById_QNAME = new QName("http://webservice/", "getUserById");
+ private final static QName _GetUserByIdResponse_QNAME = new QName("http://webservice/", "getUserByIdResponse");
+ private final static QName _Registereduser_QNAME = new QName("http://webservice/", "registereduser");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: user
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link CheckEmailUser }
+ *
+ */
+ public CheckEmailUser createCheckEmailUser() {
+ return new CheckEmailUser();
+ }
+
+ /**
+ * Create an instance of {@link CheckEmailUserResponse }
+ *
+ */
+ public CheckEmailUserResponse createCheckEmailUserResponse() {
+ return new CheckEmailUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link CreateUser }
+ *
+ */
+ public CreateUser createCreateUser() {
+ return new CreateUser();
+ }
+
+ /**
+ * Create an instance of {@link CreateUserResponse }
+ *
+ */
+ public CreateUserResponse createCreateUserResponse() {
+ return new CreateUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetNameByUid }
+ *
+ */
+ public GetNameByUid createGetNameByUid() {
+ return new GetNameByUid();
+ }
+
+ /**
+ * Create an instance of {@link GetNameByUidResponse }
+ *
+ */
+ public GetNameByUidResponse createGetNameByUidResponse() {
+ return new GetNameByUidResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetUserById }
+ *
+ */
+ public GetUserById createGetUserById() {
+ return new GetUserById();
+ }
+
+ /**
+ * Create an instance of {@link GetUserByIdResponse }
+ *
+ */
+ public GetUserByIdResponse createGetUserByIdResponse() {
+ return new GetUserByIdResponse();
+ }
+
+ /**
+ * Create an instance of {@link Registereduser }
+ *
+ */
+ public Registereduser createRegistereduser() {
+ return new Registereduser();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link CheckEmailUser }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://webservice/", name = "checkEmailUser")
+ public JAXBElement Java class for registereduser complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for answer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for checkEmailUser complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for checkEmailUserResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createUser complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createUserResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getAnswers complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getAnswersResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Answer }
+ *
+ *
+ */
+ public List Java class for getCountAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getCountAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getUserById complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getUserByIdResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hello complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for helloResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for listQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for listQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Question }
+ *
+ *
+ */
+ public List An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _Answer_QNAME = new QName("http://webservice/", "answer");
+ private final static QName _CheckEmailUser_QNAME = new QName("http://webservice/", "checkEmailUser");
+ private final static QName _CheckEmailUserResponse_QNAME = new QName("http://webservice/", "checkEmailUserResponse");
+ private final static QName _CreateAnswer_QNAME = new QName("http://webservice/", "createAnswer");
+ private final static QName _CreateAnswerResponse_QNAME = new QName("http://webservice/", "createAnswerResponse");
+ private final static QName _CreateQuestion_QNAME = new QName("http://webservice/", "createQuestion");
+ private final static QName _CreateQuestionResponse_QNAME = new QName("http://webservice/", "createQuestionResponse");
+ private final static QName _CreateUser_QNAME = new QName("http://webservice/", "createUser");
+ private final static QName _CreateUserResponse_QNAME = new QName("http://webservice/", "createUserResponse");
+ private final static QName _DeleteAllVoteAnswer_QNAME = new QName("http://webservice/", "deleteAllVoteAnswer");
+ private final static QName _DeleteAllVoteAnswerResponse_QNAME = new QName("http://webservice/", "deleteAllVoteAnswerResponse");
+ private final static QName _DeleteAllVoteQuestion_QNAME = new QName("http://webservice/", "deleteAllVoteQuestion");
+ private final static QName _DeleteAllVoteQuestionResponse_QNAME = new QName("http://webservice/", "deleteAllVoteQuestionResponse");
+ private final static QName _DeleteQuestion_QNAME = new QName("http://webservice/", "deleteQuestion");
+ private final static QName _DeleteQuestionResponse_QNAME = new QName("http://webservice/", "deleteQuestionResponse");
+ private final static QName _GetAnswers_QNAME = new QName("http://webservice/", "getAnswers");
+ private final static QName _GetAnswersResponse_QNAME = new QName("http://webservice/", "getAnswersResponse");
+ private final static QName _GetCountAnswer_QNAME = new QName("http://webservice/", "getCountAnswer");
+ private final static QName _GetCountAnswerResponse_QNAME = new QName("http://webservice/", "getCountAnswerResponse");
+ private final static QName _GetQuestion_QNAME = new QName("http://webservice/", "getQuestion");
+ private final static QName _GetQuestionResponse_QNAME = new QName("http://webservice/", "getQuestionResponse");
+ private final static QName _GetUserById_QNAME = new QName("http://webservice/", "getUserById");
+ private final static QName _GetUserByIdResponse_QNAME = new QName("http://webservice/", "getUserByIdResponse");
+ private final static QName _GetVotesAnswer_QNAME = new QName("http://webservice/", "getVotesAnswer");
+ private final static QName _GetVotesAnswerResponse_QNAME = new QName("http://webservice/", "getVotesAnswerResponse");
+ private final static QName _GetVotesQuestion_QNAME = new QName("http://webservice/", "getVotesQuestion");
+ private final static QName _GetVotesQuestionResponse_QNAME = new QName("http://webservice/", "getVotesQuestionResponse");
+ private final static QName _HasVotedAnswer_QNAME = new QName("http://webservice/", "hasVotedAnswer");
+ private final static QName _HasVotedAnswerResponse_QNAME = new QName("http://webservice/", "hasVotedAnswerResponse");
+ private final static QName _HasVotedQuestion_QNAME = new QName("http://webservice/", "hasVotedQuestion");
+ private final static QName _HasVotedQuestionResponse_QNAME = new QName("http://webservice/", "hasVotedQuestionResponse");
+ private final static QName _ListQuestion_QNAME = new QName("http://webservice/", "listQuestion");
+ private final static QName _ListQuestionResponse_QNAME = new QName("http://webservice/", "listQuestionResponse");
+ private final static QName _Question_QNAME = new QName("http://webservice/", "question");
+ private final static QName _Registereduser_QNAME = new QName("http://webservice/", "registereduser");
+ private final static QName _SearchQuestion_QNAME = new QName("http://webservice/", "searchQuestion");
+ private final static QName _SearchQuestionResponse_QNAME = new QName("http://webservice/", "searchQuestionResponse");
+ private final static QName _UpdateQuestion_QNAME = new QName("http://webservice/", "updateQuestion");
+ private final static QName _UpdateQuestionResponse_QNAME = new QName("http://webservice/", "updateQuestionResponse");
+ private final static QName _VoteAnswer_QNAME = new QName("http://webservice/", "voteAnswer");
+ private final static QName _VoteAnswerResponse_QNAME = new QName("http://webservice/", "voteAnswerResponse");
+ private final static QName _VoteQuestion_QNAME = new QName("http://webservice/", "voteQuestion");
+ private final static QName _VoteQuestionResponse_QNAME = new QName("http://webservice/", "voteQuestionResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: webservice
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link Answer }
+ *
+ */
+ public Answer createAnswer() {
+ return new Answer();
+ }
+
+ /**
+ * Create an instance of {@link CheckEmailUser }
+ *
+ */
+ public CheckEmailUser createCheckEmailUser() {
+ return new CheckEmailUser();
+ }
+
+ /**
+ * Create an instance of {@link CheckEmailUserResponse }
+ *
+ */
+ public CheckEmailUserResponse createCheckEmailUserResponse() {
+ return new CheckEmailUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link CreateAnswer }
+ *
+ */
+ public CreateAnswer createCreateAnswer() {
+ return new CreateAnswer();
+ }
+
+ /**
+ * Create an instance of {@link CreateAnswerResponse }
+ *
+ */
+ public CreateAnswerResponse createCreateAnswerResponse() {
+ return new CreateAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link CreateQuestion }
+ *
+ */
+ public CreateQuestion createCreateQuestion() {
+ return new CreateQuestion();
+ }
+
+ /**
+ * Create an instance of {@link CreateQuestionResponse }
+ *
+ */
+ public CreateQuestionResponse createCreateQuestionResponse() {
+ return new CreateQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link CreateUser }
+ *
+ */
+ public CreateUser createCreateUser() {
+ return new CreateUser();
+ }
+
+ /**
+ * Create an instance of {@link CreateUserResponse }
+ *
+ */
+ public CreateUserResponse createCreateUserResponse() {
+ return new CreateUserResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteAnswer }
+ *
+ */
+ public DeleteAllVoteAnswer createDeleteAllVoteAnswer() {
+ return new DeleteAllVoteAnswer();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteAnswerResponse }
+ *
+ */
+ public DeleteAllVoteAnswerResponse createDeleteAllVoteAnswerResponse() {
+ return new DeleteAllVoteAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteQuestion }
+ *
+ */
+ public DeleteAllVoteQuestion createDeleteAllVoteQuestion() {
+ return new DeleteAllVoteQuestion();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteQuestionResponse }
+ *
+ */
+ public DeleteAllVoteQuestionResponse createDeleteAllVoteQuestionResponse() {
+ return new DeleteAllVoteQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteQuestion }
+ *
+ */
+ public DeleteQuestion createDeleteQuestion() {
+ return new DeleteQuestion();
+ }
+
+ /**
+ * Create an instance of {@link DeleteQuestionResponse }
+ *
+ */
+ public DeleteQuestionResponse createDeleteQuestionResponse() {
+ return new DeleteQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetAnswers }
+ *
+ */
+ public GetAnswers createGetAnswers() {
+ return new GetAnswers();
+ }
+
+ /**
+ * Create an instance of {@link GetAnswersResponse }
+ *
+ */
+ public GetAnswersResponse createGetAnswersResponse() {
+ return new GetAnswersResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetCountAnswer }
+ *
+ */
+ public GetCountAnswer createGetCountAnswer() {
+ return new GetCountAnswer();
+ }
+
+ /**
+ * Create an instance of {@link GetCountAnswerResponse }
+ *
+ */
+ public GetCountAnswerResponse createGetCountAnswerResponse() {
+ return new GetCountAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetQuestion }
+ *
+ */
+ public GetQuestion createGetQuestion() {
+ return new GetQuestion();
+ }
+
+ /**
+ * Create an instance of {@link GetQuestionResponse }
+ *
+ */
+ public GetQuestionResponse createGetQuestionResponse() {
+ return new GetQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetUserById }
+ *
+ */
+ public GetUserById createGetUserById() {
+ return new GetUserById();
+ }
+
+ /**
+ * Create an instance of {@link GetUserByIdResponse }
+ *
+ */
+ public GetUserByIdResponse createGetUserByIdResponse() {
+ return new GetUserByIdResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesAnswer }
+ *
+ */
+ public GetVotesAnswer createGetVotesAnswer() {
+ return new GetVotesAnswer();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesAnswerResponse }
+ *
+ */
+ public GetVotesAnswerResponse createGetVotesAnswerResponse() {
+ return new GetVotesAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesQuestion }
+ *
+ */
+ public GetVotesQuestion createGetVotesQuestion() {
+ return new GetVotesQuestion();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesQuestionResponse }
+ *
+ */
+ public GetVotesQuestionResponse createGetVotesQuestionResponse() {
+ return new GetVotesQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedAnswer }
+ *
+ */
+ public HasVotedAnswer createHasVotedAnswer() {
+ return new HasVotedAnswer();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedAnswerResponse }
+ *
+ */
+ public HasVotedAnswerResponse createHasVotedAnswerResponse() {
+ return new HasVotedAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedQuestion }
+ *
+ */
+ public HasVotedQuestion createHasVotedQuestion() {
+ return new HasVotedQuestion();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedQuestionResponse }
+ *
+ */
+ public HasVotedQuestionResponse createHasVotedQuestionResponse() {
+ return new HasVotedQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link ListQuestion }
+ *
+ */
+ public ListQuestion createListQuestion() {
+ return new ListQuestion();
+ }
+
+ /**
+ * Create an instance of {@link ListQuestionResponse }
+ *
+ */
+ public ListQuestionResponse createListQuestionResponse() {
+ return new ListQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link Question }
+ *
+ */
+ public Question createQuestion() {
+ return new Question();
+ }
+
+ /**
+ * Create an instance of {@link Registereduser }
+ *
+ */
+ public Registereduser createRegistereduser() {
+ return new Registereduser();
+ }
+
+ /**
+ * Create an instance of {@link SearchQuestion }
+ *
+ */
+ public SearchQuestion createSearchQuestion() {
+ return new SearchQuestion();
+ }
+
+ /**
+ * Create an instance of {@link SearchQuestionResponse }
+ *
+ */
+ public SearchQuestionResponse createSearchQuestionResponse() {
+ return new SearchQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link UpdateQuestion }
+ *
+ */
+ public UpdateQuestion createUpdateQuestion() {
+ return new UpdateQuestion();
+ }
+
+ /**
+ * Create an instance of {@link UpdateQuestionResponse }
+ *
+ */
+ public UpdateQuestionResponse createUpdateQuestionResponse() {
+ return new UpdateQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link VoteAnswer }
+ *
+ */
+ public VoteAnswer createVoteAnswer() {
+ return new VoteAnswer();
+ }
+
+ /**
+ * Create an instance of {@link VoteAnswerResponse }
+ *
+ */
+ public VoteAnswerResponse createVoteAnswerResponse() {
+ return new VoteAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link VoteQuestion }
+ *
+ */
+ public VoteQuestion createVoteQuestion() {
+ return new VoteQuestion();
+ }
+
+ /**
+ * Create an instance of {@link VoteQuestionResponse }
+ *
+ */
+ public VoteQuestionResponse createVoteQuestionResponse() {
+ return new VoteQuestionResponse();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Answer }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://webservice/", name = "answer")
+ public JAXBElement Java class for question complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for registereduser complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for searchQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for searchQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Question }
+ *
+ *
+ */
+ public List Java class for updateQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for updateQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for voteAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for voteAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for voteQuestion complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for voteQuestionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for answer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for deleteAllVoteAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getAnswers complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getAnswersResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Answer }
+ *
+ *
+ */
+ public List Java class for getCountAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getCountAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVotesAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedAnswer complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for hasVotedAnswerResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _Answer_QNAME = new QName("http://webservice/", "answer");
+ private final static QName _CreateAnswer_QNAME = new QName("http://webservice/", "createAnswer");
+ private final static QName _CreateAnswerResponse_QNAME = new QName("http://webservice/", "createAnswerResponse");
+ private final static QName _DeleteAllVoteAnswer_QNAME = new QName("http://webservice/", "deleteAllVoteAnswer");
+ private final static QName _DeleteAllVoteAnswerResponse_QNAME = new QName("http://webservice/", "deleteAllVoteAnswerResponse");
+ private final static QName _GetAnswers_QNAME = new QName("http://webservice/", "getAnswers");
+ private final static QName _GetAnswersResponse_QNAME = new QName("http://webservice/", "getAnswersResponse");
+ private final static QName _GetCountAnswer_QNAME = new QName("http://webservice/", "getCountAnswer");
+ private final static QName _GetCountAnswerResponse_QNAME = new QName("http://webservice/", "getCountAnswerResponse");
+ private final static QName _GetVotesAnswer_QNAME = new QName("http://webservice/", "getVotesAnswer");
+ private final static QName _GetVotesAnswerResponse_QNAME = new QName("http://webservice/", "getVotesAnswerResponse");
+ private final static QName _HasVotedAnswer_QNAME = new QName("http://webservice/", "hasVotedAnswer");
+ private final static QName _HasVotedAnswerResponse_QNAME = new QName("http://webservice/", "hasVotedAnswerResponse");
+ private final static QName _VoteAnswer_QNAME = new QName("http://webservice/", "voteAnswer");
+ private final static QName _VoteAnswerResponse_QNAME = new QName("http://webservice/", "voteAnswerResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: answer
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link Answer }
+ *
+ */
+ public Answer createAnswer() {
+ return new Answer();
+ }
+
+ /**
+ * Create an instance of {@link CreateAnswer }
+ *
+ */
+ public CreateAnswer createCreateAnswer() {
+ return new CreateAnswer();
+ }
+
+ /**
+ * Create an instance of {@link CreateAnswerResponse }
+ *
+ */
+ public CreateAnswerResponse createCreateAnswerResponse() {
+ return new CreateAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteAnswer }
+ *
+ */
+ public DeleteAllVoteAnswer createDeleteAllVoteAnswer() {
+ return new DeleteAllVoteAnswer();
+ }
+
+ /**
+ * Create an instance of {@link DeleteAllVoteAnswerResponse }
+ *
+ */
+ public DeleteAllVoteAnswerResponse createDeleteAllVoteAnswerResponse() {
+ return new DeleteAllVoteAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetAnswers }
+ *
+ */
+ public GetAnswers createGetAnswers() {
+ return new GetAnswers();
+ }
+
+ /**
+ * Create an instance of {@link GetAnswersResponse }
+ *
+ */
+ public GetAnswersResponse createGetAnswersResponse() {
+ return new GetAnswersResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetCountAnswer }
+ *
+ */
+ public GetCountAnswer createGetCountAnswer() {
+ return new GetCountAnswer();
+ }
+
+ /**
+ * Create an instance of {@link GetCountAnswerResponse }
+ *
+ */
+ public GetCountAnswerResponse createGetCountAnswerResponse() {
+ return new GetCountAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesAnswer }
+ *
+ */
+ public GetVotesAnswer createGetVotesAnswer() {
+ return new GetVotesAnswer();
+ }
+
+ /**
+ * Create an instance of {@link GetVotesAnswerResponse }
+ *
+ */
+ public GetVotesAnswerResponse createGetVotesAnswerResponse() {
+ return new GetVotesAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedAnswer }
+ *
+ */
+ public HasVotedAnswer createHasVotedAnswer() {
+ return new HasVotedAnswer();
+ }
+
+ /**
+ * Create an instance of {@link HasVotedAnswerResponse }
+ *
+ */
+ public HasVotedAnswerResponse createHasVotedAnswerResponse() {
+ return new HasVotedAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link VoteAnswer }
+ *
+ */
+ public VoteAnswer createVoteAnswer() {
+ return new VoteAnswer();
+ }
+
+ /**
+ * Create an instance of {@link VoteAnswerResponse }
+ *
+ */
+ public VoteAnswerResponse createVoteAnswerResponse() {
+ return new VoteAnswerResponse();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Answer }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://webservice/", name = "answer")
+ public JAXBElement
+ * <complexType name="getCountAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getCountAnswer", propOrder = {
+ "qid"
+})
+public class GetCountAnswer {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetCountAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetCountAnswerResponse.java
new file mode 100644
index 00000000..72752d2b
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetCountAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getCountAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getCountAnswerResponse", propOrder = {
+ "_return"
+})
+public class GetCountAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetVotesAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetVotesAnswer.java
new file mode 100644
index 00000000..7b84412a
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetVotesAnswer.java
@@ -0,0 +1,52 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesAnswer", propOrder = {
+ "aid"
+})
+public class GetVotesAnswer {
+
+ protected int aid;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetVotesAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetVotesAnswerResponse.java
new file mode 100644
index 00000000..b791c147
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/GetVotesAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesAnswerResponse", propOrder = {
+ "_return"
+})
+public class GetVotesAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/HasVotedAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/HasVotedAnswer.java
new file mode 100644
index 00000000..e5b61422
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/HasVotedAnswer.java
@@ -0,0 +1,90 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="status" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedAnswer", propOrder = {
+ "aid",
+ "uid",
+ "status"
+})
+public class HasVotedAnswer {
+
+ protected int aid;
+ protected int uid;
+ protected int status;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ */
+ public int getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ */
+ public void setStatus(int value) {
+ this.status = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/HasVotedAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/HasVotedAnswerResponse.java
new file mode 100644
index 00000000..26170ea6
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/HasVotedAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedAnswerResponse", propOrder = {
+ "_return"
+})
+public class HasVotedAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/ObjectFactory.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/ObjectFactory.java
new file mode 100644
index 00000000..586e0ea9
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/ObjectFactory.java
@@ -0,0 +1,305 @@
+
+package answer;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the answer package.
+ *
+ * <complexType name="voteAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteAnswer", propOrder = {
+ "token",
+ "aid",
+ "value"
+})
+public class VoteAnswer {
+
+ protected String token;
+ protected int aid;
+ protected String value;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/VoteAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/VoteAnswerResponse.java
new file mode 100644
index 00000000..7a226050
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/VoteAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="voteAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteAnswerResponse", propOrder = {
+ "_return"
+})
+public class VoteAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/package-info.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/package-info.java
new file mode 100644
index 00000000..c7cf0170
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/answer/package-info.java
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice/")
+package answer;
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/CreateQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/CreateQuestion.java
new file mode 100644
index 00000000..eb950951
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/CreateQuestion.java
@@ -0,0 +1,87 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="question" type="{http://webservice/}question" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createQuestion", propOrder = {
+ "token",
+ "question"
+})
+public class CreateQuestion {
+
+ protected String token;
+ protected Question question;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the question property.
+ *
+ * @return
+ * possible object is
+ * {@link Question }
+ *
+ */
+ public Question getQuestion() {
+ return question;
+ }
+
+ /**
+ * Sets the value of the question property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Question }
+ *
+ */
+ public void setQuestion(Question value) {
+ this.question = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/CreateQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/CreateQuestionResponse.java
new file mode 100644
index 00000000..b9013e49
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/CreateQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createQuestionResponse", propOrder = {
+ "_return"
+})
+public class CreateQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteAllVoteQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteAllVoteQuestion.java
new file mode 100644
index 00000000..f9da1539
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteAllVoteQuestion.java
@@ -0,0 +1,79 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteQuestion", propOrder = {
+ "token",
+ "qid"
+})
+public class DeleteAllVoteQuestion {
+
+ protected String token;
+ protected int qid;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteAllVoteQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteAllVoteQuestionResponse.java
new file mode 100644
index 00000000..0fe17c94
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteAllVoteQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteQuestionResponse", propOrder = {
+ "_return"
+})
+public class DeleteAllVoteQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteQuestion.java
new file mode 100644
index 00000000..473bc032
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteQuestion.java
@@ -0,0 +1,79 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteQuestion", propOrder = {
+ "token",
+ "qid"
+})
+public class DeleteQuestion {
+
+ protected String token;
+ protected int qid;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteQuestionResponse.java
new file mode 100644
index 00000000..1f075930
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/DeleteQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteQuestionResponse", propOrder = {
+ "_return"
+})
+public class DeleteQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetQuestion.java
new file mode 100644
index 00000000..99fad32c
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetQuestion.java
@@ -0,0 +1,52 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQuestion", propOrder = {
+ "qid"
+})
+public class GetQuestion {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetQuestionResponse.java
new file mode 100644
index 00000000..d6e8319e
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}question" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQuestionResponse", propOrder = {
+ "_return"
+})
+public class GetQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Question _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Question }
+ *
+ */
+ public Question getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Question }
+ *
+ */
+ public void setReturn(Question value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetVotesQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetVotesQuestion.java
new file mode 100644
index 00000000..2880c1c7
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetVotesQuestion.java
@@ -0,0 +1,52 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesQuestion", propOrder = {
+ "qid"
+})
+public class GetVotesQuestion {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetVotesQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetVotesQuestionResponse.java
new file mode 100644
index 00000000..9e241da1
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/GetVotesQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesQuestionResponse", propOrder = {
+ "_return"
+})
+public class GetVotesQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/HasVotedQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/HasVotedQuestion.java
new file mode 100644
index 00000000..b3595d46
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/HasVotedQuestion.java
@@ -0,0 +1,90 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="status" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedQuestion", propOrder = {
+ "qid",
+ "uid",
+ "status"
+})
+public class HasVotedQuestion {
+
+ protected int qid;
+ protected int uid;
+ protected int status;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ */
+ public int getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ */
+ public void setStatus(int value) {
+ this.status = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/HasVotedQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/HasVotedQuestionResponse.java
new file mode 100644
index 00000000..f5a4ebfd
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/HasVotedQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedQuestionResponse", propOrder = {
+ "_return"
+})
+public class HasVotedQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/ListQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/ListQuestion.java
new file mode 100644
index 00000000..e5df050b
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/ListQuestion.java
@@ -0,0 +1,32 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="listQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listQuestion")
+public class ListQuestion {
+
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/ListQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/ListQuestionResponse.java
new file mode 100644
index 00000000..df1d002c
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/ListQuestionResponse.java
@@ -0,0 +1,69 @@
+
+package question;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="listQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}question" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listQuestionResponse", propOrder = {
+ "_return"
+})
+public class ListQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="question">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="countanswers" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="countvotes" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="createdtime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * <element name="topic" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "question", propOrder = {
+ "content",
+ "countanswers",
+ "countvotes",
+ "createdtime",
+ "qid",
+ "topic",
+ "uid"
+})
+public class Question {
+
+ protected String content;
+ protected int countanswers;
+ protected int countvotes;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar createdtime;
+ protected Integer qid;
+ protected String topic;
+ protected int uid;
+
+ /**
+ * Gets the value of the content property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getContent() {
+ return content;
+ }
+
+ /**
+ * Sets the value of the content property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setContent(String value) {
+ this.content = value;
+ }
+
+ /**
+ * Gets the value of the countanswers property.
+ *
+ */
+ public int getCountanswers() {
+ return countanswers;
+ }
+
+ /**
+ * Sets the value of the countanswers property.
+ *
+ */
+ public void setCountanswers(int value) {
+ this.countanswers = value;
+ }
+
+ /**
+ * Gets the value of the countvotes property.
+ *
+ */
+ public int getCountvotes() {
+ return countvotes;
+ }
+
+ /**
+ * Sets the value of the countvotes property.
+ *
+ */
+ public void setCountvotes(int value) {
+ this.countvotes = value;
+ }
+
+ /**
+ * Gets the value of the createdtime property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getCreatedtime() {
+ return createdtime;
+ }
+
+ /**
+ * Sets the value of the createdtime property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setCreatedtime(XMLGregorianCalendar value) {
+ this.createdtime = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setQid(Integer value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the topic property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTopic() {
+ return topic;
+ }
+
+ /**
+ * Sets the value of the topic property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTopic(String value) {
+ this.topic = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/QuestionWS.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/QuestionWS.java
new file mode 100644
index 00000000..332bf39a
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/QuestionWS.java
@@ -0,0 +1,205 @@
+
+package question;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.Action;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.11-b150120.1832
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "Question_WS", targetNamespace = "http://webservice/")
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface QuestionWS {
+
+
+ /**
+ *
+ * @param question
+ * @param token
+ * @return
+ * returns java.lang.Integer
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "createQuestion", targetNamespace = "http://webservice/", className = "question.CreateQuestion")
+ @ResponseWrapper(localName = "createQuestionResponse", targetNamespace = "http://webservice/", className = "question.CreateQuestionResponse")
+ @Action(input = "http://webservice/Question_WS/createQuestionRequest", output = "http://webservice/Question_WS/createQuestionResponse")
+ public Integer createQuestion(
+ @WebParam(name = "token", targetNamespace = "")
+ String token,
+ @WebParam(name = "question", targetNamespace = "")
+ Question question);
+
+ /**
+ *
+ * @param qid
+ * @return
+ * returns java.lang.Integer
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getVotesQuestion", targetNamespace = "http://webservice/", className = "question.GetVotesQuestion")
+ @ResponseWrapper(localName = "getVotesQuestionResponse", targetNamespace = "http://webservice/", className = "question.GetVotesQuestionResponse")
+ @Action(input = "http://webservice/Question_WS/getVotesQuestionRequest", output = "http://webservice/Question_WS/getVotesQuestionResponse")
+ public Integer getVotesQuestion(
+ @WebParam(name = "qid", targetNamespace = "")
+ int qid);
+
+ /**
+ *
+ * @param qid
+ * @param value
+ * @param token
+ * @return
+ * returns java.lang.Integer
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "voteQuestion", targetNamespace = "http://webservice/", className = "question.VoteQuestion")
+ @ResponseWrapper(localName = "voteQuestionResponse", targetNamespace = "http://webservice/", className = "question.VoteQuestionResponse")
+ @Action(input = "http://webservice/Question_WS/voteQuestionRequest", output = "http://webservice/Question_WS/voteQuestionResponse")
+ public Integer voteQuestion(
+ @WebParam(name = "token", targetNamespace = "")
+ String token,
+ @WebParam(name = "qid", targetNamespace = "")
+ int qid,
+ @WebParam(name = "value", targetNamespace = "")
+ String value);
+
+ /**
+ *
+ * @param keyword
+ * @return
+ * returns java.util.Listfeatures
parameter will have their default values.
+ * @return
+ * returns QuestionWS
+ */
+ @WebEndpoint(name = "Question_WSPort")
+ public QuestionWS getQuestionWSPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://webservice/", "Question_WSPort"), QuestionWS.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (QUESTIONWS_EXCEPTION!= null) {
+ throw QUESTIONWS_EXCEPTION;
+ }
+ return QUESTIONWS_WSDL_LOCATION;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/SearchQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/SearchQuestion.java
new file mode 100644
index 00000000..36852e79
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/SearchQuestion.java
@@ -0,0 +1,60 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="searchQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "searchQuestion", propOrder = {
+ "keyword"
+})
+public class SearchQuestion {
+
+ protected String keyword;
+
+ /**
+ * Gets the value of the keyword property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKeyword() {
+ return keyword;
+ }
+
+ /**
+ * Sets the value of the keyword property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKeyword(String value) {
+ this.keyword = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/SearchQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/SearchQuestionResponse.java
new file mode 100644
index 00000000..6f31339d
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/SearchQuestionResponse.java
@@ -0,0 +1,69 @@
+
+package question;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="searchQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}question" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "searchQuestionResponse", propOrder = {
+ "_return"
+})
+public class SearchQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="updateQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="topic" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateQuestion", propOrder = {
+ "token",
+ "qid",
+ "topic",
+ "content"
+})
+public class UpdateQuestion {
+
+ protected String token;
+ protected int qid;
+ protected String topic;
+ protected String content;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the topic property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTopic() {
+ return topic;
+ }
+
+ /**
+ * Sets the value of the topic property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTopic(String value) {
+ this.topic = value;
+ }
+
+ /**
+ * Gets the value of the content property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getContent() {
+ return content;
+ }
+
+ /**
+ * Sets the value of the content property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setContent(String value) {
+ this.content = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/UpdateQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/UpdateQuestionResponse.java
new file mode 100644
index 00000000..da81d5e7
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/UpdateQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="updateQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateQuestionResponse", propOrder = {
+ "_return"
+})
+public class UpdateQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/VoteQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/VoteQuestion.java
new file mode 100644
index 00000000..76500643
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/VoteQuestion.java
@@ -0,0 +1,106 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="voteQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteQuestion", propOrder = {
+ "token",
+ "qid",
+ "value"
+})
+public class VoteQuestion {
+
+ protected String token;
+ protected int qid;
+ protected String value;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/VoteQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/VoteQuestionResponse.java
new file mode 100644
index 00000000..41cbc0a8
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/VoteQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package question;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="voteQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteQuestionResponse", propOrder = {
+ "_return"
+})
+public class VoteQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/package-info.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/package-info.java
new file mode 100644
index 00000000..68c1d46a
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/question/package-info.java
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice/")
+package question;
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CheckEmailUser.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CheckEmailUser.java
new file mode 100644
index 00000000..5bcf7034
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CheckEmailUser.java
@@ -0,0 +1,60 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="checkEmailUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "checkEmailUser", propOrder = {
+ "email"
+})
+public class CheckEmailUser {
+
+ protected String email;
+
+ /**
+ * Gets the value of the email property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEmail() {
+ return email;
+ }
+
+ /**
+ * Sets the value of the email property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEmail(String value) {
+ this.email = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CheckEmailUserResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CheckEmailUserResponse.java
new file mode 100644
index 00000000..41dcb283
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CheckEmailUserResponse.java
@@ -0,0 +1,62 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="checkEmailUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "checkEmailUserResponse", propOrder = {
+ "_return"
+})
+public class CheckEmailUserResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CreateUser.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CreateUser.java
new file mode 100644
index 00000000..f07da3f7
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CreateUser.java
@@ -0,0 +1,60 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="user" type="{http://webservice/}registereduser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createUser", propOrder = {
+ "user"
+})
+public class CreateUser {
+
+ protected Registereduser user;
+
+ /**
+ * Gets the value of the user property.
+ *
+ * @return
+ * possible object is
+ * {@link Registereduser }
+ *
+ */
+ public Registereduser getUser() {
+ return user;
+ }
+
+ /**
+ * Sets the value of the user property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Registereduser }
+ *
+ */
+ public void setUser(Registereduser value) {
+ this.user = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CreateUserResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CreateUserResponse.java
new file mode 100644
index 00000000..ca561884
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/CreateUserResponse.java
@@ -0,0 +1,32 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createUserResponse")
+public class CreateUserResponse {
+
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetNameByUid.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetNameByUid.java
new file mode 100644
index 00000000..5328dfbe
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetNameByUid.java
@@ -0,0 +1,52 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getNameByUid">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getNameByUid", propOrder = {
+ "uid"
+})
+public class GetNameByUid {
+
+ protected int uid;
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetNameByUidResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetNameByUidResponse.java
new file mode 100644
index 00000000..9229ada7
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetNameByUidResponse.java
@@ -0,0 +1,62 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getNameByUidResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getNameByUidResponse", propOrder = {
+ "_return"
+})
+public class GetNameByUidResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetUserById.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetUserById.java
new file mode 100644
index 00000000..00a5da51
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetUserById.java
@@ -0,0 +1,52 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getUserById">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getUserById", propOrder = {
+ "uid"
+})
+public class GetUserById {
+
+ protected int uid;
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetUserByIdResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetUserByIdResponse.java
new file mode 100644
index 00000000..d3a7d238
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/GetUserByIdResponse.java
@@ -0,0 +1,62 @@
+
+package user;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getUserByIdResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}registereduser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getUserByIdResponse", propOrder = {
+ "_return"
+})
+public class GetUserByIdResponse {
+
+ @XmlElement(name = "return")
+ protected Registereduser _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Registereduser }
+ *
+ */
+ public Registereduser getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Registereduser }
+ *
+ */
+ public void setReturn(Registereduser value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/ObjectFactory.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/ObjectFactory.java
new file mode 100644
index 00000000..17ce1b8c
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/ObjectFactory.java
@@ -0,0 +1,197 @@
+
+package user;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the user package.
+ *
+ * <complexType name="registereduser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="createdtime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "registereduser", propOrder = {
+ "createdtime",
+ "email",
+ "name",
+ "password",
+ "uid"
+})
+public class Registereduser {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar createdtime;
+ protected String email;
+ protected String name;
+ protected String password;
+ protected Integer uid;
+
+ /**
+ * Gets the value of the createdtime property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getCreatedtime() {
+ return createdtime;
+ }
+
+ /**
+ * Sets the value of the createdtime property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setCreatedtime(XMLGregorianCalendar value) {
+ this.createdtime = value;
+ }
+
+ /**
+ * Gets the value of the email property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEmail() {
+ return email;
+ }
+
+ /**
+ * Sets the value of the email property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEmail(String value) {
+ this.email = value;
+ }
+
+ /**
+ * 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 password property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPassword() {
+ return password;
+ }
+
+ /**
+ * Sets the value of the password property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPassword(String value) {
+ this.password = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setUid(Integer value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/UserWS.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/UserWS.java
new file mode 100644
index 00000000..5f5eeab4
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/UserWS.java
@@ -0,0 +1,84 @@
+
+package user;
+
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.Action;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.11-b150120.1832
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "User_WS", targetNamespace = "http://webservice/")
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface UserWS {
+
+
+ /**
+ *
+ * @param user
+ */
+ @WebMethod
+ @RequestWrapper(localName = "createUser", targetNamespace = "http://webservice/", className = "user.CreateUser")
+ @ResponseWrapper(localName = "createUserResponse", targetNamespace = "http://webservice/", className = "user.CreateUserResponse")
+ @Action(input = "http://webservice/User_WS/createUserRequest", output = "http://webservice/User_WS/createUserResponse")
+ public void createUser(
+ @WebParam(name = "user", targetNamespace = "")
+ Registereduser user);
+
+ /**
+ *
+ * @param uid
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getNameByUid", targetNamespace = "http://webservice/", className = "user.GetNameByUid")
+ @ResponseWrapper(localName = "getNameByUidResponse", targetNamespace = "http://webservice/", className = "user.GetNameByUidResponse")
+ @Action(input = "http://webservice/User_WS/getNameByUidRequest", output = "http://webservice/User_WS/getNameByUidResponse")
+ public String getNameByUid(
+ @WebParam(name = "uid", targetNamespace = "")
+ int uid);
+
+ /**
+ *
+ * @param email
+ * @return
+ * returns java.lang.Boolean
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "checkEmailUser", targetNamespace = "http://webservice/", className = "user.CheckEmailUser")
+ @ResponseWrapper(localName = "checkEmailUserResponse", targetNamespace = "http://webservice/", className = "user.CheckEmailUserResponse")
+ @Action(input = "http://webservice/User_WS/checkEmailUserRequest", output = "http://webservice/User_WS/checkEmailUserResponse")
+ public Boolean checkEmailUser(
+ @WebParam(name = "email", targetNamespace = "")
+ String email);
+
+ /**
+ *
+ * @param uid
+ * @return
+ * returns user.Registereduser
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getUserById", targetNamespace = "http://webservice/", className = "user.GetUserById")
+ @ResponseWrapper(localName = "getUserByIdResponse", targetNamespace = "http://webservice/", className = "user.GetUserByIdResponse")
+ @Action(input = "http://webservice/User_WS/getUserByIdRequest", output = "http://webservice/User_WS/getUserByIdResponse")
+ public Registereduser getUserById(
+ @WebParam(name = "uid", targetNamespace = "")
+ int uid);
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/UserWS_Service.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/UserWS_Service.java
new file mode 100644
index 00000000..9c083451
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/UserWS_Service.java
@@ -0,0 +1,94 @@
+
+package user;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.11-b150120.1832
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "User_WS", targetNamespace = "http://webservice/", wsdlLocation = "http://localhost:8081/SimpleStackExchange_Webservice/User_WS?wsdl")
+public class UserWS_Service
+ extends Service
+{
+
+ private final static URL USERWS_WSDL_LOCATION;
+ private final static WebServiceException USERWS_EXCEPTION;
+ private final static QName USERWS_QNAME = new QName("http://webservice/", "User_WS");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("http://localhost:8081/SimpleStackExchange_Webservice/User_WS?wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ USERWS_WSDL_LOCATION = url;
+ USERWS_EXCEPTION = e;
+ }
+
+ public UserWS_Service() {
+ super(__getWsdlLocation(), USERWS_QNAME);
+ }
+
+ public UserWS_Service(WebServiceFeature... features) {
+ super(__getWsdlLocation(), USERWS_QNAME, features);
+ }
+
+ public UserWS_Service(URL wsdlLocation) {
+ super(wsdlLocation, USERWS_QNAME);
+ }
+
+ public UserWS_Service(URL wsdlLocation, WebServiceFeature... features) {
+ super(wsdlLocation, USERWS_QNAME, features);
+ }
+
+ public UserWS_Service(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public UserWS_Service(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
+ super(wsdlLocation, serviceName, features);
+ }
+
+ /**
+ *
+ * @return
+ * returns UserWS
+ */
+ @WebEndpoint(name = "User_WSPort")
+ public UserWS getUserWSPort() {
+ return super.getPort(new QName("http://webservice/", "User_WSPort"), UserWS.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
+ * @return
+ * returns UserWS
+ */
+ @WebEndpoint(name = "User_WSPort")
+ public UserWS getUserWSPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://webservice/", "User_WSPort"), UserWS.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (USERWS_EXCEPTION!= null) {
+ throw USERWS_EXCEPTION;
+ }
+ return USERWS_WSDL_LOCATION;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/package-info.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/package-info.java
new file mode 100644
index 00000000..d5cd5683
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/user/package-info.java
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice/")
+package user;
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Answer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Answer.java
new file mode 100644
index 00000000..14b2287a
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Answer.java
@@ -0,0 +1,174 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ *
+ * <complexType name="answer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="countvotes" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="createdtime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "answer", propOrder = {
+ "aid",
+ "content",
+ "countvotes",
+ "createdtime",
+ "qid",
+ "uid"
+})
+public class Answer {
+
+ protected Integer aid;
+ protected String content;
+ protected int countvotes;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar createdtime;
+ protected int qid;
+ protected int uid;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setAid(Integer value) {
+ this.aid = value;
+ }
+
+ /**
+ * Gets the value of the content property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getContent() {
+ return content;
+ }
+
+ /**
+ * Sets the value of the content property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setContent(String value) {
+ this.content = value;
+ }
+
+ /**
+ * Gets the value of the countvotes property.
+ *
+ */
+ public int getCountvotes() {
+ return countvotes;
+ }
+
+ /**
+ * Sets the value of the countvotes property.
+ *
+ */
+ public void setCountvotes(int value) {
+ this.countvotes = value;
+ }
+
+ /**
+ * Gets the value of the createdtime property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getCreatedtime() {
+ return createdtime;
+ }
+
+ /**
+ * Sets the value of the createdtime property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setCreatedtime(XMLGregorianCalendar value) {
+ this.createdtime = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CheckEmailUser.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CheckEmailUser.java
new file mode 100644
index 00000000..dbcab083
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CheckEmailUser.java
@@ -0,0 +1,60 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="checkEmailUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "checkEmailUser", propOrder = {
+ "email"
+})
+public class CheckEmailUser {
+
+ protected String email;
+
+ /**
+ * Gets the value of the email property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEmail() {
+ return email;
+ }
+
+ /**
+ * Sets the value of the email property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEmail(String value) {
+ this.email = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CheckEmailUserResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CheckEmailUserResponse.java
new file mode 100644
index 00000000..e62a115f
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CheckEmailUserResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="checkEmailUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "checkEmailUserResponse", propOrder = {
+ "_return"
+})
+public class CheckEmailUserResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateAnswer.java
new file mode 100644
index 00000000..4db01cca
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateAnswer.java
@@ -0,0 +1,87 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="answer" type="{http://webservice/}answer" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createAnswer", propOrder = {
+ "token",
+ "answer"
+})
+public class CreateAnswer {
+
+ protected String token;
+ protected Answer answer;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the answer property.
+ *
+ * @return
+ * possible object is
+ * {@link Answer }
+ *
+ */
+ public Answer getAnswer() {
+ return answer;
+ }
+
+ /**
+ * Sets the value of the answer property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Answer }
+ *
+ */
+ public void setAnswer(Answer value) {
+ this.answer = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateAnswerResponse.java
new file mode 100644
index 00000000..473139a5
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createAnswerResponse", propOrder = {
+ "_return"
+})
+public class CreateAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateQuestion.java
new file mode 100644
index 00000000..d6b032e3
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateQuestion.java
@@ -0,0 +1,87 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="question" type="{http://webservice/}question" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createQuestion", propOrder = {
+ "token",
+ "question"
+})
+public class CreateQuestion {
+
+ protected String token;
+ protected Question question;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the question property.
+ *
+ * @return
+ * possible object is
+ * {@link Question }
+ *
+ */
+ public Question getQuestion() {
+ return question;
+ }
+
+ /**
+ * Sets the value of the question property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Question }
+ *
+ */
+ public void setQuestion(Question value) {
+ this.question = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateQuestionResponse.java
new file mode 100644
index 00000000..b0a5da20
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createQuestionResponse", propOrder = {
+ "_return"
+})
+public class CreateQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateUser.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateUser.java
new file mode 100644
index 00000000..f3da4dc0
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateUser.java
@@ -0,0 +1,60 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createUser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="user" type="{http://webservice/}registereduser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createUser", propOrder = {
+ "user"
+})
+public class CreateUser {
+
+ protected Registereduser user;
+
+ /**
+ * Gets the value of the user property.
+ *
+ * @return
+ * possible object is
+ * {@link Registereduser }
+ *
+ */
+ public Registereduser getUser() {
+ return user;
+ }
+
+ /**
+ * Sets the value of the user property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Registereduser }
+ *
+ */
+ public void setUser(Registereduser value) {
+ this.user = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateUserResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateUserResponse.java
new file mode 100644
index 00000000..0d7e94a9
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/CreateUserResponse.java
@@ -0,0 +1,32 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createUserResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createUserResponse")
+public class CreateUserResponse {
+
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteAnswer.java
new file mode 100644
index 00000000..ab8b5123
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteAnswer.java
@@ -0,0 +1,52 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteAnswer", propOrder = {
+ "aid"
+})
+public class DeleteAllVoteAnswer {
+
+ protected int aid;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteAnswerResponse.java
new file mode 100644
index 00000000..7f3d2a27
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteAnswerResponse", propOrder = {
+ "_return"
+})
+public class DeleteAllVoteAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteQuestion.java
new file mode 100644
index 00000000..8991bc25
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteQuestion.java
@@ -0,0 +1,52 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteQuestion", propOrder = {
+ "qid"
+})
+public class DeleteAllVoteQuestion {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteQuestionResponse.java
new file mode 100644
index 00000000..71f6c461
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteAllVoteQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteQuestionResponse", propOrder = {
+ "_return"
+})
+public class DeleteAllVoteQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteQuestion.java
new file mode 100644
index 00000000..29633929
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteQuestion.java
@@ -0,0 +1,79 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteQuestion", propOrder = {
+ "token",
+ "qid"
+})
+public class DeleteQuestion {
+
+ protected String token;
+ protected int qid;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteQuestionResponse.java
new file mode 100644
index 00000000..2b425773
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/DeleteQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteQuestionResponse", propOrder = {
+ "_return"
+})
+public class DeleteQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetAnswers.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetAnswers.java
new file mode 100644
index 00000000..777708c1
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetAnswers.java
@@ -0,0 +1,52 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getAnswers">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAnswers", propOrder = {
+ "qid"
+})
+public class GetAnswers {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetAnswersResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetAnswersResponse.java
new file mode 100644
index 00000000..dedf247c
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetAnswersResponse.java
@@ -0,0 +1,69 @@
+
+package webservice;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getAnswersResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}answer" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAnswersResponse", propOrder = {
+ "_return"
+})
+public class GetAnswersResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getCountAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getCountAnswer", propOrder = {
+ "qid"
+})
+public class GetCountAnswer {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetCountAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetCountAnswerResponse.java
new file mode 100644
index 00000000..1d1b918c
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetCountAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getCountAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getCountAnswerResponse", propOrder = {
+ "_return"
+})
+public class GetCountAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetQuestion.java
new file mode 100644
index 00000000..265eba6e
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetQuestion.java
@@ -0,0 +1,52 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQuestion", propOrder = {
+ "qid"
+})
+public class GetQuestion {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetQuestionResponse.java
new file mode 100644
index 00000000..05f85b3d
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}question" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQuestionResponse", propOrder = {
+ "_return"
+})
+public class GetQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Question _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Question }
+ *
+ */
+ public Question getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Question }
+ *
+ */
+ public void setReturn(Question value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetUserById.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetUserById.java
new file mode 100644
index 00000000..f04da7e1
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetUserById.java
@@ -0,0 +1,52 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getUserById">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getUserById", propOrder = {
+ "uid"
+})
+public class GetUserById {
+
+ protected int uid;
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetUserByIdResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetUserByIdResponse.java
new file mode 100644
index 00000000..49b929a5
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetUserByIdResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getUserByIdResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}registereduser" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getUserByIdResponse", propOrder = {
+ "_return"
+})
+public class GetUserByIdResponse {
+
+ @XmlElement(name = "return")
+ protected Registereduser _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Registereduser }
+ *
+ */
+ public Registereduser getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Registereduser }
+ *
+ */
+ public void setReturn(Registereduser value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesAnswer.java
new file mode 100644
index 00000000..64e70dfc
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesAnswer.java
@@ -0,0 +1,52 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesAnswer", propOrder = {
+ "aid"
+})
+public class GetVotesAnswer {
+
+ protected int aid;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesAnswerResponse.java
new file mode 100644
index 00000000..a7146637
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesAnswerResponse", propOrder = {
+ "_return"
+})
+public class GetVotesAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesQuestion.java
new file mode 100644
index 00000000..485e6d31
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesQuestion.java
@@ -0,0 +1,52 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesQuestion", propOrder = {
+ "qid"
+})
+public class GetVotesQuestion {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesQuestionResponse.java
new file mode 100644
index 00000000..7176fa9c
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/GetVotesQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesQuestionResponse", propOrder = {
+ "_return"
+})
+public class GetVotesQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedAnswer.java
new file mode 100644
index 00000000..3e41957e
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedAnswer.java
@@ -0,0 +1,71 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedAnswer", propOrder = {
+ "aid",
+ "uid"
+})
+public class HasVotedAnswer {
+
+ protected int aid;
+ protected int uid;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedAnswerResponse.java
new file mode 100644
index 00000000..b1859ea8
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedAnswerResponse", propOrder = {
+ "_return"
+})
+public class HasVotedAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedQuestion.java
new file mode 100644
index 00000000..a0ded7a6
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedQuestion.java
@@ -0,0 +1,71 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedQuestion", propOrder = {
+ "qid",
+ "uid"
+})
+public class HasVotedQuestion {
+
+ protected int qid;
+ protected int uid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedQuestionResponse.java
new file mode 100644
index 00000000..42824f89
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HasVotedQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedQuestionResponse", propOrder = {
+ "_return"
+})
+public class HasVotedQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Hello.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Hello.java
new file mode 100644
index 00000000..f7e0e62f
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Hello.java
@@ -0,0 +1,60 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hello">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hello", propOrder = {
+ "name"
+})
+public class Hello {
+
+ protected String name;
+
+ /**
+ * 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;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HelloResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HelloResponse.java
new file mode 100644
index 00000000..8f95712a
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/HelloResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="helloResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "helloResponse", propOrder = {
+ "_return"
+})
+public class HelloResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/ListQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/ListQuestion.java
new file mode 100644
index 00000000..329b7999
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/ListQuestion.java
@@ -0,0 +1,32 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="listQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listQuestion")
+public class ListQuestion {
+
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/ListQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/ListQuestionResponse.java
new file mode 100644
index 00000000..5d4e88f4
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/ListQuestionResponse.java
@@ -0,0 +1,69 @@
+
+package webservice;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="listQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}question" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listQuestionResponse", propOrder = {
+ "_return"
+})
+public class ListQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="question">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="countanswers" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="countvotes" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="createdtime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * <element name="topic" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "question", propOrder = {
+ "content",
+ "countanswers",
+ "countvotes",
+ "createdtime",
+ "qid",
+ "topic",
+ "uid"
+})
+public class Question {
+
+ protected String content;
+ protected int countanswers;
+ protected int countvotes;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar createdtime;
+ protected Integer qid;
+ protected String topic;
+ protected int uid;
+
+ /**
+ * Gets the value of the content property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getContent() {
+ return content;
+ }
+
+ /**
+ * Sets the value of the content property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setContent(String value) {
+ this.content = value;
+ }
+
+ /**
+ * Gets the value of the countanswers property.
+ *
+ */
+ public int getCountanswers() {
+ return countanswers;
+ }
+
+ /**
+ * Sets the value of the countanswers property.
+ *
+ */
+ public void setCountanswers(int value) {
+ this.countanswers = value;
+ }
+
+ /**
+ * Gets the value of the countvotes property.
+ *
+ */
+ public int getCountvotes() {
+ return countvotes;
+ }
+
+ /**
+ * Sets the value of the countvotes property.
+ *
+ */
+ public void setCountvotes(int value) {
+ this.countvotes = value;
+ }
+
+ /**
+ * Gets the value of the createdtime property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getCreatedtime() {
+ return createdtime;
+ }
+
+ /**
+ * Sets the value of the createdtime property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setCreatedtime(XMLGregorianCalendar value) {
+ this.createdtime = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setQid(Integer value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the topic property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTopic() {
+ return topic;
+ }
+
+ /**
+ * Sets the value of the topic property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTopic(String value) {
+ this.topic = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Registereduser.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Registereduser.java
new file mode 100644
index 00000000..e4f8de9e
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/Registereduser.java
@@ -0,0 +1,171 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ *
+ * <complexType name="registereduser">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="createdtime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "registereduser", propOrder = {
+ "createdtime",
+ "email",
+ "name",
+ "password",
+ "uid"
+})
+public class Registereduser {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar createdtime;
+ protected String email;
+ protected String name;
+ protected String password;
+ protected Integer uid;
+
+ /**
+ * Gets the value of the createdtime property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getCreatedtime() {
+ return createdtime;
+ }
+
+ /**
+ * Sets the value of the createdtime property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setCreatedtime(XMLGregorianCalendar value) {
+ this.createdtime = value;
+ }
+
+ /**
+ * Gets the value of the email property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEmail() {
+ return email;
+ }
+
+ /**
+ * Sets the value of the email property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEmail(String value) {
+ this.email = value;
+ }
+
+ /**
+ * 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 password property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPassword() {
+ return password;
+ }
+
+ /**
+ * Sets the value of the password property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPassword(String value) {
+ this.password = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setUid(Integer value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/SearchQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/SearchQuestion.java
new file mode 100644
index 00000000..5f824a78
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/SearchQuestion.java
@@ -0,0 +1,60 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="searchQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "searchQuestion", propOrder = {
+ "keyword"
+})
+public class SearchQuestion {
+
+ protected String keyword;
+
+ /**
+ * Gets the value of the keyword property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKeyword() {
+ return keyword;
+ }
+
+ /**
+ * Sets the value of the keyword property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKeyword(String value) {
+ this.keyword = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/SearchQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/SearchQuestionResponse.java
new file mode 100644
index 00000000..609ea464
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/SearchQuestionResponse.java
@@ -0,0 +1,69 @@
+
+package webservice;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="searchQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}question" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "searchQuestionResponse", propOrder = {
+ "_return"
+})
+public class SearchQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ * features
parameter will have their default values.
+ * @return
+ * returns SimpleStackExchangeWS
+ */
+ @WebEndpoint(name = "SimpleStackExchange_WSPort")
+ public SimpleStackExchangeWS getSimpleStackExchangeWSPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://webservice/", "SimpleStackExchange_WSPort"), SimpleStackExchangeWS.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (SIMPLESTACKEXCHANGEWS_EXCEPTION!= null) {
+ throw SIMPLESTACKEXCHANGEWS_EXCEPTION;
+ }
+ return SIMPLESTACKEXCHANGEWS_WSDL_LOCATION;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/UpdateQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/UpdateQuestion.java
new file mode 100644
index 00000000..87684870
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/UpdateQuestion.java
@@ -0,0 +1,133 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="updateQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="topic" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateQuestion", propOrder = {
+ "token",
+ "qid",
+ "topic",
+ "content"
+})
+public class UpdateQuestion {
+
+ protected String token;
+ protected int qid;
+ protected String topic;
+ protected String content;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the topic property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTopic() {
+ return topic;
+ }
+
+ /**
+ * Sets the value of the topic property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTopic(String value) {
+ this.topic = value;
+ }
+
+ /**
+ * Gets the value of the content property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getContent() {
+ return content;
+ }
+
+ /**
+ * Sets the value of the content property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setContent(String value) {
+ this.content = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/UpdateQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/UpdateQuestionResponse.java
new file mode 100644
index 00000000..54a278ca
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/UpdateQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="updateQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "updateQuestionResponse", propOrder = {
+ "_return"
+})
+public class UpdateQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteAnswer.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteAnswer.java
new file mode 100644
index 00000000..6972a60b
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteAnswer.java
@@ -0,0 +1,98 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="voteAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteAnswer", propOrder = {
+ "aid",
+ "uid",
+ "value"
+})
+public class VoteAnswer {
+
+ protected int aid;
+ protected int uid;
+ protected String value;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteAnswerResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteAnswerResponse.java
new file mode 100644
index 00000000..2b77bee4
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="voteAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteAnswerResponse", propOrder = {
+ "_return"
+})
+public class VoteAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteQuestion.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteQuestion.java
new file mode 100644
index 00000000..48e2f0eb
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteQuestion.java
@@ -0,0 +1,98 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="voteQuestion">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteQuestion", propOrder = {
+ "qid",
+ "uid",
+ "value"
+})
+public class VoteQuestion {
+
+ protected int qid;
+ protected int uid;
+ protected String value;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteQuestionResponse.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteQuestionResponse.java
new file mode 100644
index 00000000..5f3a06c2
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/VoteQuestionResponse.java
@@ -0,0 +1,62 @@
+
+package webservice;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="voteQuestionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "voteQuestionResponse", propOrder = {
+ "_return"
+})
+public class VoteQuestionResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/package-info.java b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/package-info.java
new file mode 100644
index 00000000..89b94f51
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated-sources/jax-ws/webservice/package-info.java
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice/")
+package webservice;
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/Answer.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/Answer.java
new file mode 100644
index 00000000..ae418c5d
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/Answer.java
@@ -0,0 +1,174 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ *
+ * <complexType name="answer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="countvotes" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="createdtime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "answer", propOrder = {
+ "aid",
+ "content",
+ "countvotes",
+ "createdtime",
+ "qid",
+ "uid"
+})
+public class Answer {
+
+ protected Integer aid;
+ protected String content;
+ protected int countvotes;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar createdtime;
+ protected int qid;
+ protected int uid;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setAid(Integer value) {
+ this.aid = value;
+ }
+
+ /**
+ * Gets the value of the content property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getContent() {
+ return content;
+ }
+
+ /**
+ * Sets the value of the content property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setContent(String value) {
+ this.content = value;
+ }
+
+ /**
+ * Gets the value of the countvotes property.
+ *
+ */
+ public int getCountvotes() {
+ return countvotes;
+ }
+
+ /**
+ * Sets the value of the countvotes property.
+ *
+ */
+ public void setCountvotes(int value) {
+ this.countvotes = value;
+ }
+
+ /**
+ * Gets the value of the createdtime property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getCreatedtime() {
+ return createdtime;
+ }
+
+ /**
+ * Sets the value of the createdtime property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setCreatedtime(XMLGregorianCalendar value) {
+ this.createdtime = value;
+ }
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/AnswerWS.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/AnswerWS.java
new file mode 100644
index 00000000..50175037
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/AnswerWS.java
@@ -0,0 +1,151 @@
+
+package answer;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.Action;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.11-b150120.1832
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "Answer_WS", targetNamespace = "http://webservice/")
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface AnswerWS {
+
+
+ /**
+ *
+ * @param aid
+ * @param token
+ * @return
+ * returns java.lang.Boolean
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "deleteAllVoteAnswer", targetNamespace = "http://webservice/", className = "answer.DeleteAllVoteAnswer")
+ @ResponseWrapper(localName = "deleteAllVoteAnswerResponse", targetNamespace = "http://webservice/", className = "answer.DeleteAllVoteAnswerResponse")
+ @Action(input = "http://webservice/Answer_WS/deleteAllVoteAnswerRequest", output = "http://webservice/Answer_WS/deleteAllVoteAnswerResponse")
+ public Boolean deleteAllVoteAnswer(
+ @WebParam(name = "token", targetNamespace = "")
+ String token,
+ @WebParam(name = "aid", targetNamespace = "")
+ int aid);
+
+ /**
+ *
+ * @param qid
+ * @return
+ * returns java.lang.Integer
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getCountAnswer", targetNamespace = "http://webservice/", className = "answer.GetCountAnswer")
+ @ResponseWrapper(localName = "getCountAnswerResponse", targetNamespace = "http://webservice/", className = "answer.GetCountAnswerResponse")
+ @Action(input = "http://webservice/Answer_WS/getCountAnswerRequest", output = "http://webservice/Answer_WS/getCountAnswerResponse")
+ public Integer getCountAnswer(
+ @WebParam(name = "qid", targetNamespace = "")
+ int qid);
+
+ /**
+ *
+ * @param aid
+ * @return
+ * returns java.lang.Integer
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getVotesAnswer", targetNamespace = "http://webservice/", className = "answer.GetVotesAnswer")
+ @ResponseWrapper(localName = "getVotesAnswerResponse", targetNamespace = "http://webservice/", className = "answer.GetVotesAnswerResponse")
+ @Action(input = "http://webservice/Answer_WS/getVotesAnswerRequest", output = "http://webservice/Answer_WS/getVotesAnswerResponse")
+ public Integer getVotesAnswer(
+ @WebParam(name = "aid", targetNamespace = "")
+ int aid);
+
+ /**
+ *
+ * @param uid
+ * @param aid
+ * @param status
+ * @return
+ * returns java.lang.Boolean
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "hasVotedAnswer", targetNamespace = "http://webservice/", className = "answer.HasVotedAnswer")
+ @ResponseWrapper(localName = "hasVotedAnswerResponse", targetNamespace = "http://webservice/", className = "answer.HasVotedAnswerResponse")
+ @Action(input = "http://webservice/Answer_WS/hasVotedAnswerRequest", output = "http://webservice/Answer_WS/hasVotedAnswerResponse")
+ public Boolean hasVotedAnswer(
+ @WebParam(name = "aid", targetNamespace = "")
+ int aid,
+ @WebParam(name = "uid", targetNamespace = "")
+ int uid,
+ @WebParam(name = "status", targetNamespace = "")
+ int status);
+
+ /**
+ *
+ * @param answer
+ * @param token
+ * @return
+ * returns java.lang.Integer
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "createAnswer", targetNamespace = "http://webservice/", className = "answer.CreateAnswer")
+ @ResponseWrapper(localName = "createAnswerResponse", targetNamespace = "http://webservice/", className = "answer.CreateAnswerResponse")
+ @Action(input = "http://webservice/Answer_WS/createAnswerRequest", output = "http://webservice/Answer_WS/createAnswerResponse")
+ public Integer createAnswer(
+ @WebParam(name = "token", targetNamespace = "")
+ String token,
+ @WebParam(name = "answer", targetNamespace = "")
+ Answer answer);
+
+ /**
+ *
+ * @param qid
+ * @return
+ * returns java.util.Listfeatures
parameter will have their default values.
+ * @return
+ * returns AnswerWS
+ */
+ @WebEndpoint(name = "Answer_WSPort")
+ public AnswerWS getAnswerWSPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://webservice/", "Answer_WSPort"), AnswerWS.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (ANSWERWS_EXCEPTION!= null) {
+ throw ANSWERWS_EXCEPTION;
+ }
+ return ANSWERWS_WSDL_LOCATION;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/CreateAnswer.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/CreateAnswer.java
new file mode 100644
index 00000000..8c3055c2
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/CreateAnswer.java
@@ -0,0 +1,87 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="answer" type="{http://webservice/}answer" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createAnswer", propOrder = {
+ "token",
+ "answer"
+})
+public class CreateAnswer {
+
+ protected String token;
+ protected Answer answer;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the answer property.
+ *
+ * @return
+ * possible object is
+ * {@link Answer }
+ *
+ */
+ public Answer getAnswer() {
+ return answer;
+ }
+
+ /**
+ * Sets the value of the answer property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Answer }
+ *
+ */
+ public void setAnswer(Answer value) {
+ this.answer = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/CreateAnswerResponse.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/CreateAnswerResponse.java
new file mode 100644
index 00000000..a79289be
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/CreateAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="createAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createAnswerResponse", propOrder = {
+ "_return"
+})
+public class CreateAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/DeleteAllVoteAnswer.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/DeleteAllVoteAnswer.java
new file mode 100644
index 00000000..adef8cbf
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/DeleteAllVoteAnswer.java
@@ -0,0 +1,79 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteAnswer", propOrder = {
+ "token",
+ "aid"
+})
+public class DeleteAllVoteAnswer {
+
+ protected String token;
+ protected int aid;
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/DeleteAllVoteAnswerResponse.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/DeleteAllVoteAnswerResponse.java
new file mode 100644
index 00000000..f47c4aad
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/DeleteAllVoteAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="deleteAllVoteAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "deleteAllVoteAnswerResponse", propOrder = {
+ "_return"
+})
+public class DeleteAllVoteAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetAnswers.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetAnswers.java
new file mode 100644
index 00000000..3c30b164
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetAnswers.java
@@ -0,0 +1,52 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getAnswers">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAnswers", propOrder = {
+ "qid"
+})
+public class GetAnswers {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetAnswersResponse.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetAnswersResponse.java
new file mode 100644
index 00000000..34381f9f
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetAnswersResponse.java
@@ -0,0 +1,69 @@
+
+package answer;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getAnswersResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://webservice/}answer" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAnswersResponse", propOrder = {
+ "_return"
+})
+public class GetAnswersResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getCountAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="qid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getCountAnswer", propOrder = {
+ "qid"
+})
+public class GetCountAnswer {
+
+ protected int qid;
+
+ /**
+ * Gets the value of the qid property.
+ *
+ */
+ public int getQid() {
+ return qid;
+ }
+
+ /**
+ * Sets the value of the qid property.
+ *
+ */
+ public void setQid(int value) {
+ this.qid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetCountAnswerResponse.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetCountAnswerResponse.java
new file mode 100644
index 00000000..72752d2b
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetCountAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getCountAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getCountAnswerResponse", propOrder = {
+ "_return"
+})
+public class GetCountAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetVotesAnswer.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetVotesAnswer.java
new file mode 100644
index 00000000..7b84412a
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetVotesAnswer.java
@@ -0,0 +1,52 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesAnswer", propOrder = {
+ "aid"
+})
+public class GetVotesAnswer {
+
+ protected int aid;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetVotesAnswerResponse.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetVotesAnswerResponse.java
new file mode 100644
index 00000000..b791c147
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/GetVotesAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVotesAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVotesAnswerResponse", propOrder = {
+ "_return"
+})
+public class GetVotesAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Integer _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setReturn(Integer value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/HasVotedAnswer.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/HasVotedAnswer.java
new file mode 100644
index 00000000..e5b61422
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/HasVotedAnswer.java
@@ -0,0 +1,90 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedAnswer">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="aid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="uid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="status" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedAnswer", propOrder = {
+ "aid",
+ "uid",
+ "status"
+})
+public class HasVotedAnswer {
+
+ protected int aid;
+ protected int uid;
+ protected int status;
+
+ /**
+ * Gets the value of the aid property.
+ *
+ */
+ public int getAid() {
+ return aid;
+ }
+
+ /**
+ * Sets the value of the aid property.
+ *
+ */
+ public void setAid(int value) {
+ this.aid = value;
+ }
+
+ /**
+ * Gets the value of the uid property.
+ *
+ */
+ public int getUid() {
+ return uid;
+ }
+
+ /**
+ * Sets the value of the uid property.
+ *
+ */
+ public void setUid(int value) {
+ this.uid = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ */
+ public int getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ */
+ public void setStatus(int value) {
+ this.status = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/HasVotedAnswerResponse.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/HasVotedAnswerResponse.java
new file mode 100644
index 00000000..26170ea6
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/HasVotedAnswerResponse.java
@@ -0,0 +1,62 @@
+
+package answer;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hasVotedAnswerResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hasVotedAnswerResponse", propOrder = {
+ "_return"
+})
+public class HasVotedAnswerResponse {
+
+ @XmlElement(name = "return")
+ protected Boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setReturn(Boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/ObjectFactory.java b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/ObjectFactory.java
new file mode 100644
index 00000000..586e0ea9
--- /dev/null
+++ b/SimpleStackExchange_Client/build/generated/jax-wsCache/Answer_WS/answer/ObjectFactory.java
@@ -0,0 +1,305 @@
+
+package answer;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the answer package.
+ *