PageRenderTime 34ms CodeModel.GetById 38ms RepoModel.GetById 1ms app.codeStats 0ms

/build/generated-sources/jax-ws/provesserviceclient/PacientType.java

https://bitbucket.org/medicinaesportivaontologies/client
Java | 195 lines | 57 code | 18 blank | 120 comment | 0 complexity | 38cda67a59441dc50340fd9251acf920 MD5 | raw file
  1. package provesserviceclient;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlType;
  5. /**
  6. * <p>Java class for PacientType complex type.
  7. *
  8. * <p>The following schema fragment specifies the expected content contained within this class.
  9. *
  10. * <pre>
  11. * &lt;complexType name="PacientType">
  12. * &lt;complexContent>
  13. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  14. * &lt;sequence>
  15. * &lt;element name="pacientID" type="{http://medicinaesportivaontologies.bitbucket.org/onto-serv/servei_proves}PacientDATA" minOccurs="0"/>
  16. * &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  17. * &lt;element name="cognom2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  18. * &lt;element name="cognom1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  19. * &lt;element name="nom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  20. * &lt;element name="dni" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  21. * &lt;/sequence>
  22. * &lt;/restriction>
  23. * &lt;/complexContent>
  24. * &lt;/complexType>
  25. * </pre>
  26. *
  27. *
  28. */
  29. @XmlAccessorType(XmlAccessType.FIELD)
  30. @XmlType(name = "PacientType", propOrder = {
  31. "pacientID",
  32. "name",
  33. "cognom2",
  34. "cognom1",
  35. "nom",
  36. "dni"
  37. })
  38. public class PacientType {
  39. protected PacientDATA pacientID;
  40. protected String name;
  41. protected String cognom2;
  42. protected String cognom1;
  43. protected String nom;
  44. protected String dni;
  45. /**
  46. * Gets the value of the pacientID property.
  47. *
  48. * @return
  49. * possible object is
  50. * {@link PacientDATA }
  51. *
  52. */
  53. public PacientDATA getPacientID() {
  54. return pacientID;
  55. }
  56. /**
  57. * Sets the value of the pacientID property.
  58. *
  59. * @param value
  60. * allowed object is
  61. * {@link PacientDATA }
  62. *
  63. */
  64. public void setPacientID(PacientDATA value) {
  65. this.pacientID = value;
  66. }
  67. /**
  68. * Gets the value of the name property.
  69. *
  70. * @return
  71. * possible object is
  72. * {@link String }
  73. *
  74. */
  75. public String getName() {
  76. return name;
  77. }
  78. /**
  79. * Sets the value of the name property.
  80. *
  81. * @param value
  82. * allowed object is
  83. * {@link String }
  84. *
  85. */
  86. public void setName(String value) {
  87. this.name = value;
  88. }
  89. /**
  90. * Gets the value of the cognom2 property.
  91. *
  92. * @return
  93. * possible object is
  94. * {@link String }
  95. *
  96. */
  97. public String getCognom2() {
  98. return cognom2;
  99. }
  100. /**
  101. * Sets the value of the cognom2 property.
  102. *
  103. * @param value
  104. * allowed object is
  105. * {@link String }
  106. *
  107. */
  108. public void setCognom2(String value) {
  109. this.cognom2 = value;
  110. }
  111. /**
  112. * Gets the value of the cognom1 property.
  113. *
  114. * @return
  115. * possible object is
  116. * {@link String }
  117. *
  118. */
  119. public String getCognom1() {
  120. return cognom1;
  121. }
  122. /**
  123. * Sets the value of the cognom1 property.
  124. *
  125. * @param value
  126. * allowed object is
  127. * {@link String }
  128. *
  129. */
  130. public void setCognom1(String value) {
  131. this.cognom1 = value;
  132. }
  133. /**
  134. * Gets the value of the nom property.
  135. *
  136. * @return
  137. * possible object is
  138. * {@link String }
  139. *
  140. */
  141. public String getNom() {
  142. return nom;
  143. }
  144. /**
  145. * Sets the value of the nom property.
  146. *
  147. * @param value
  148. * allowed object is
  149. * {@link String }
  150. *
  151. */
  152. public void setNom(String value) {
  153. this.nom = value;
  154. }
  155. /**
  156. * Gets the value of the dni property.
  157. *
  158. * @return
  159. * possible object is
  160. * {@link String }
  161. *
  162. */
  163. public String getDni() {
  164. return dni;
  165. }
  166. /**
  167. * Sets the value of the dni property.
  168. *
  169. * @param value
  170. * allowed object is
  171. * {@link String }
  172. *
  173. */
  174. public void setDni(String value) {
  175. this.dni = value;
  176. }
  177. }