浏览代码

Genesis segun excel

tatan 4 年前
当前提交
a06876ca44
共有 34 个文件被更改,包括 10957 次插入0 次删除
  1. 2 0
      .gitignore
  2. 73 0
      build.xml
  3. 25 0
      catalog.xml
  4. 3 0
      manifest.mf
  5. 26 0
      return
  6. 706 0
      src/GenesisRequest/AddUserRequest.java
  7. 512 0
      src/GenesisRequest/AssignUpdateRoleByUserRequest.java
  8. 436 0
      src/GenesisRequest/BranchListRequest.java
  9. 492 0
      src/GenesisRequest/DeleteUserRequest.java
  10. 436 0
      src/GenesisRequest/RoleListRequest.java
  11. 533 0
      src/GenesisRequest/UpdateUserRequest.java
  12. 521 0
      src/GenesisRequest/UserBlockRequest.java
  13. 512 0
      src/GenesisRequest/UserListRequest.java
  14. 492 0
      src/GenesisRequest/WorkstationByBranchListRequest.java
  15. 532 0
      src/GenesisRequest/WorkstationMoveRequest.java
  16. 482 0
      src/GenesisResponse/AddUserResponse.java
  17. 416 0
      src/GenesisResponse/AssignUpdateRoleByUserResponse.java
  18. 606 0
      src/GenesisResponse/BranchListResponse.java
  19. 416 0
      src/GenesisResponse/DeleteUserResponse.java
  20. 606 0
      src/GenesisResponse/RoleListResponse.java
  21. 482 0
      src/GenesisResponse/UpdateUserResponse.java
  22. 416 0
      src/GenesisResponse/UserBlockResponse.java
  23. 776 0
      src/GenesisResponse/UserListResponse.java
  24. 637 0
      src/GenesisResponse/WorkstationByBranchListResponse.java
  25. 416 0
      src/GenesisResponse/WorkstationMoveResponse.java
  26. 25 0
      src/META-INF/jax-ws-catalog.xml
  27. 40 0
      src/META-INF/wsdl/GenesisService.wsdl
  28. 41 0
      src/META-INF/wsdl/GenesisServiceService.wsdl
  29. 18 0
      src/META-INF/wsdl/GenesisServiceService_schema1.xsd
  30. 18 0
      src/META-INF/wsdl/GenesisService_schema1.xsd
  31. 150 0
      src/com/vespot/Genesis.java
  32. 52 0
      src/com/vespot/utils/Utils.java
  33. 41 0
      xml-resources/web-service-references/GenesisServiceService/wsdl/GenesisServiceService.wsdl
  34. 18 0
      xml-resources/web-service-references/GenesisServiceService/wsdl/GenesisServiceService_schema1.xsd

+ 2 - 0
.gitignore 查看文件

@@ -0,0 +1,2 @@
1
+/nbproject/
2
+/build/

+ 73 - 0
build.xml 查看文件

@@ -0,0 +1,73 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!-- You may freely edit this file. See commented blocks below for -->
3
+<!-- some examples of how to customize the build. -->
4
+<!-- (If you delete it and reopen the project it will be recreated.) -->
5
+<!-- By default, only the Clean and Build commands use this build script. -->
6
+<!-- Commands such as Run, Debug, and Test only use this build script if -->
7
+<!-- the Compile on Save feature is turned off for the project. -->
8
+<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
9
+<!-- in the project's Project Properties dialog box.-->
10
+<project name="GenesisAPI" default="default" basedir=".">
11
+    <description>Builds, tests, and runs the project GenesisAPI.</description>
12
+    <import file="nbproject/build-impl.xml"/>
13
+    <!--
14
+
15
+    There exist several targets which are by default empty and which can be 
16
+    used for execution of your tasks. These targets are usually executed 
17
+    before and after some main targets. They are: 
18
+
19
+      -pre-init:                 called before initialization of project properties
20
+      -post-init:                called after initialization of project properties
21
+      -pre-compile:              called before javac compilation
22
+      -post-compile:             called after javac compilation
23
+      -pre-compile-single:       called before javac compilation of single file
24
+      -post-compile-single:      called after javac compilation of single file
25
+      -pre-compile-test:         called before javac compilation of JUnit tests
26
+      -post-compile-test:        called after javac compilation of JUnit tests
27
+      -pre-compile-test-single:  called before javac compilation of single JUnit test
28
+      -post-compile-test-single: called after javac compilation of single JUunit test
29
+      -pre-jar:                  called before JAR building
30
+      -post-jar:                 called after JAR building
31
+      -post-clean:               called after cleaning build products
32
+
33
+    (Targets beginning with '-' are not intended to be called on their own.)
34
+
35
+    Example of inserting an obfuscator after compilation could look like this:
36
+
37
+        <target name="-post-compile">
38
+            <obfuscate>
39
+                <fileset dir="${build.classes.dir}"/>
40
+            </obfuscate>
41
+        </target>
42
+
43
+    For list of available properties check the imported 
44
+    nbproject/build-impl.xml file. 
45
+
46
+
47
+    Another way to customize the build is by overriding existing main targets.
48
+    The targets of interest are: 
49
+
50
+      -init-macrodef-javac:     defines macro for javac compilation
51
+      -init-macrodef-junit:     defines macro for junit execution
52
+      -init-macrodef-debug:     defines macro for class debugging
53
+      -init-macrodef-java:      defines macro for class execution
54
+      -do-jar:                  JAR building
55
+      run:                      execution of project 
56
+      -javadoc-build:           Javadoc generation
57
+      test-report:              JUnit report generation
58
+
59
+    An example of overriding the target for project execution could look like this:
60
+
61
+        <target name="run" depends="GenesisAPI-impl.jar">
62
+            <exec dir="bin" executable="launcher.exe">
63
+                <arg file="${dist.jar}"/>
64
+            </exec>
65
+        </target>
66
+
67
+    Notice that the overridden target depends on the jar target and not only on 
68
+    the compile target as the regular run target does. Again, for a list of available 
69
+    properties which you can use, check the target you are overriding in the
70
+    nbproject/build-impl.xml file. 
71
+
72
+    -->
73
+</project>

+ 25 - 0
catalog.xml 查看文件

@@ -0,0 +1,25 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="system">
3
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/AddUserRequest.xsd" uri="xml-resources/jaxb/AddUserRequest/AddUserRequest.xsd"/>
4
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/AssignUpdateRoleByUserRequest.xsd" uri="xml-resources/jaxb/AssignUpdateRoleByUserRequest/AssignUpdateRoleByUserRequest.xsd"/>
5
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/BranchListRequest.xsd" uri="xml-resources/jaxb/BranchListRequest/BranchListRequest.xsd"/>
6
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/DeleteUserRequest.xsd" uri="xml-resources/jaxb/DeleteUserRequest/DeleteUserRequest.xsd"/>
7
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/RoleListRequest.xsd" uri="xml-resources/jaxb/RoleListRequest/RoleListRequest.xsd"/>
8
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/UpdateUserRequest.xsd" uri="xml-resources/jaxb/UpdateUserRequest/UpdateUserRequest.xsd"/>
9
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/UserBlockRequest.xsd" uri="xml-resources/jaxb/UserBlockRequest/UserBlockRequest.xsd"/>
10
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/UserListRequest.xsd" uri="xml-resources/jaxb/UserListRequest/UserListRequest.xsd"/>
11
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/WorkstationByBranchListRequest.xsd" uri="xml-resources/jaxb/WorkstationByBranchListRequest/WorkstationByBranchListRequest.xsd"/>
12
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/WorkstationMoveRequest.xsd" uri="xml-resources/jaxb/WorkstationMoveRequest/WorkstationMoveRequest.xsd"/>
13
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/AddUserResponse.xsd" uri="xml-resources/jaxb/AddUserResponse/AddUserResponse.xsd"/>
14
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/AssignUpdateRoleByUserResponse.xsd" uri="xml-resources/jaxb/AssignUpdateRoleByUserResponse/AssignUpdateRoleByUserResponse.xsd"/>
15
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/BranchListResponse.xsd" uri="xml-resources/jaxb/BranchListResponse/BranchListResponse.xsd"/>
16
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/DeleteUserResponse.xsd" uri="xml-resources/jaxb/DeleteUserResponse/DeleteUserResponse.xsd"/>
17
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/RoleListResponse.xsd" uri="xml-resources/jaxb/RoleListResponse/RoleListResponse.xsd"/>
18
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/UpdateUserResponse.xsd" uri="xml-resources/jaxb/UpdateUserResponse/UpdateUserResponse.xsd"/>
19
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/UserBlockResponse.xsd" uri="xml-resources/jaxb/UserBlockResponse/UserBlockResponse.xsd"/>
20
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/UserListResponse.xsd" uri="xml-resources/jaxb/UserListResponse/UserListResponse.xsd"/>
21
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/WorkstationByBranchListResponse.xsd" uri="xml-resources/jaxb/WorkstationByBranchListResponse/WorkstationByBranchListResponse.xsd"/>
22
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/WorkstationMoveResponse.xsd" uri="xml-resources/jaxb/WorkstationMoveResponse/WorkstationMoveResponse.xsd"/>
23
+    <system systemId="file:/E:/genesisapi/GenesisAPI/../../JAVA/request/DeleteUserRequest.xsd" uri="xml-resources/jaxb/DeleteUserRequest/DeleteUserRequest.xsd"/>
24
+    <system systemId="file:/E:/GenesisServiceService.wsdl" uri="xml-resources/web-service-references/GenesisServiceService/wsdl/GenesisServiceService.wsdl"/>
25
+</catalog>

+ 3 - 0
manifest.mf 查看文件

@@ -0,0 +1,3 @@
1
+Manifest-Version: 1.0
2
+X-COMMENT: Main-Class will be added automatically by build
3
+

+ 26 - 0
return 查看文件

@@ -0,0 +1,26 @@
1
+diff.astextplain.textconv=astextplain
2
+filter.lfs.clean=git-lfs clean -- %f
3
+filter.lfs.smudge=git-lfs smudge -- %f
4
+filter.lfs.process=git-lfs filter-process
5
+filter.lfs.required=true
6
+http.sslbackend=openssl
7
+http.sslcainfo=D:/GitHub/Git/mingw64/ssl/certs/ca-bundle.crt
8
+core.autocrlf=true
9
+core.fscache=true
10
+core.symlinks=false
11
+pull.rebase=false
12
+credential.helper=manager-core
13
+credential.https://dev.azure.com.usehttppath=true
14
+init.defaultbranch=master
15
+user.name=tatan
16
+user.email=jcarpao@vespot.com
17
+core.repositoryformatversion=0
18
+core.filemode=false
19
+core.bare=false
20
+core.logallrefupdates=true
21
+core.symlinks=false
22
+core.ignorecase=true
23
+remote.origin.url=http://git.vespot.com/jbaquero/GenesisAPI.git
24
+remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
25
+branch.master.remote=origin
26
+branch.master.merge=refs/heads/master

+ 706 - 0
src/GenesisRequest/AddUserRequest.java 查看文件

@@ -0,0 +1,706 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 01:56:48 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_AddUserRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
65
+ *           &amp;lt;complexType&amp;gt;
66
+ *             &amp;lt;complexContent&amp;gt;
67
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                 &amp;lt;sequence&amp;gt;
69
+ *                   &amp;lt;element name="gnsNombres" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
70
+ *                   &amp;lt;element name="gnsApellidoPaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
71
+ *                   &amp;lt;element name="gnsApellidoMaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
72
+ *                   &amp;lt;element name="gnsRUT" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
73
+ *                   &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
74
+ *                   &amp;lt;element name="gnsNombredeUsuario" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
75
+ *                   &amp;lt;element name="gnsContrasena" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
76
+ *                   &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
77
+ *                   &amp;lt;element name="gnsIDSupervisor" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
78
+ *                 &amp;lt;/sequence&amp;gt;
79
+ *               &amp;lt;/restriction&amp;gt;
80
+ *             &amp;lt;/complexContent&amp;gt;
81
+ *           &amp;lt;/complexType&amp;gt;
82
+ *         &amp;lt;/element&amp;gt;
83
+ *       &amp;lt;/sequence&amp;gt;
84
+ *     &amp;lt;/restriction&amp;gt;
85
+ *   &amp;lt;/complexContent&amp;gt;
86
+ * &amp;lt;/complexType&amp;gt;
87
+ * &lt;/pre&gt;
88
+ * 
89
+ * 
90
+ */
91
+@XmlAccessorType(XmlAccessType.FIELD)
92
+@XmlType(name = "", propOrder = {
93
+    "signonRq",
94
+    "baseSvcRq",
95
+    "bankSvcRq"
96
+})
97
+@XmlRootElement(name = "Genesis")
98
+public class AddUserRequest {
99
+
100
+    @XmlElement(name = "SignonRq", required = true)
101
+    protected AddUserRequest.SignonRq signonRq;
102
+    @XmlElement(name = "BaseSvcRq", required = true)
103
+    protected AddUserRequest.BaseSvcRq baseSvcRq;
104
+    @XmlElement(name = "BankSvcRq", required = true)
105
+    protected AddUserRequest.BankSvcRq bankSvcRq;
106
+
107
+    /**
108
+     * Obtiene el valor de la propiedad signonRq.
109
+     * 
110
+     * @return
111
+     *     possible object is
112
+     *     {@link Genesis.SignonRq }
113
+     *     
114
+     */
115
+    public AddUserRequest.SignonRq getSignonRq() {
116
+        return signonRq;
117
+    }
118
+
119
+    /**
120
+     * Define el valor de la propiedad signonRq.
121
+     * 
122
+     * @param value
123
+     *     allowed object is
124
+     *     {@link Genesis.SignonRq }
125
+     *     
126
+     */
127
+    public void setSignonRq(AddUserRequest.SignonRq value) {
128
+        this.signonRq = value;
129
+    }
130
+
131
+    /**
132
+     * Obtiene el valor de la propiedad baseSvcRq.
133
+     * 
134
+     * @return
135
+     *     possible object is
136
+     *     {@link Genesis.BaseSvcRq }
137
+     *     
138
+     */
139
+    public AddUserRequest.BaseSvcRq getBaseSvcRq() {
140
+        return baseSvcRq;
141
+    }
142
+
143
+    /**
144
+     * Define el valor de la propiedad baseSvcRq.
145
+     * 
146
+     * @param value
147
+     *     allowed object is
148
+     *     {@link Genesis.BaseSvcRq }
149
+     *     
150
+     */
151
+    public void setBaseSvcRq(AddUserRequest.BaseSvcRq value) {
152
+        this.baseSvcRq = value;
153
+    }
154
+
155
+    /**
156
+     * Obtiene el valor de la propiedad bankSvcRq.
157
+     * 
158
+     * @return
159
+     *     possible object is
160
+     *     {@link Genesis.BankSvcRq }
161
+     *     
162
+     */
163
+    public AddUserRequest.BankSvcRq getBankSvcRq() {
164
+        return bankSvcRq;
165
+    }
166
+
167
+    /**
168
+     * Define el valor de la propiedad bankSvcRq.
169
+     * 
170
+     * @param value
171
+     *     allowed object is
172
+     *     {@link Genesis.BankSvcRq }
173
+     *     
174
+     */
175
+    public void setBankSvcRq(AddUserRequest.BankSvcRq value) {
176
+        this.bankSvcRq = value;
177
+    }
178
+
179
+
180
+    /**
181
+     * &lt;p&gt;Clase Java para anonymous complex type.
182
+     * 
183
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
184
+     * 
185
+     * &lt;pre&gt;
186
+     * &amp;lt;complexType&amp;gt;
187
+     *   &amp;lt;complexContent&amp;gt;
188
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
189
+     *       &amp;lt;sequence&amp;gt;
190
+     *         &amp;lt;element name="gnsNombres" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
191
+     *         &amp;lt;element name="gnsApellidoPaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
192
+     *         &amp;lt;element name="gnsApellidoMaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
193
+     *         &amp;lt;element name="gnsRUT" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
194
+     *         &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
195
+     *         &amp;lt;element name="gnsNombredeUsuario" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
196
+     *         &amp;lt;element name="gnsContrasena" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
197
+     *         &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
198
+     *         &amp;lt;element name="gnsIDSupervisor" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
199
+     *       &amp;lt;/sequence&amp;gt;
200
+     *     &amp;lt;/restriction&amp;gt;
201
+     *   &amp;lt;/complexContent&amp;gt;
202
+     * &amp;lt;/complexType&amp;gt;
203
+     * &lt;/pre&gt;
204
+     * 
205
+     * 
206
+     */
207
+    @XmlAccessorType(XmlAccessType.FIELD)
208
+    @XmlType(name = "", propOrder = {
209
+        "gnsNombres",
210
+        "gnsApellidoPaterno",
211
+        "gnsApellidoMaterno",
212
+        "gnsRUT",
213
+        "gnsIDRol",
214
+        "gnsNombredeUsuario",
215
+        "gnsContrasena",
216
+        "gnsCodigoSucursal",
217
+        "gnsIDSupervisor"
218
+    })
219
+    public static class BankSvcRq {
220
+
221
+        @XmlElement(required = true)
222
+        protected String gnsNombres;
223
+        @XmlElement(required = true)
224
+        protected String gnsApellidoPaterno;
225
+        @XmlElement(required = true)
226
+        protected String gnsApellidoMaterno;
227
+        @XmlElement(required = true)
228
+        protected String gnsRUT;
229
+        protected long gnsIDRol;
230
+        @XmlElement(required = true)
231
+        protected String gnsNombredeUsuario;
232
+        @XmlElement(required = true)
233
+        protected String gnsContrasena;
234
+        protected long gnsCodigoSucursal;
235
+        protected long gnsIDSupervisor;
236
+
237
+        /**
238
+         * Obtiene el valor de la propiedad gnsNombres.
239
+         * 
240
+         * @return
241
+         *     possible object is
242
+         *     {@link String }
243
+         *     
244
+         */
245
+        public String getGnsNombres() {
246
+            return gnsNombres;
247
+        }
248
+
249
+        /**
250
+         * Define el valor de la propiedad gnsNombres.
251
+         * 
252
+         * @param value
253
+         *     allowed object is
254
+         *     {@link String }
255
+         *     
256
+         */
257
+        public void setGnsNombres(String value) {
258
+            this.gnsNombres = value;
259
+        }
260
+
261
+        /**
262
+         * Obtiene el valor de la propiedad gnsApellidoPaterno.
263
+         * 
264
+         * @return
265
+         *     possible object is
266
+         *     {@link String }
267
+         *     
268
+         */
269
+        public String getGnsApellidoPaterno() {
270
+            return gnsApellidoPaterno;
271
+        }
272
+
273
+        /**
274
+         * Define el valor de la propiedad gnsApellidoPaterno.
275
+         * 
276
+         * @param value
277
+         *     allowed object is
278
+         *     {@link String }
279
+         *     
280
+         */
281
+        public void setGnsApellidoPaterno(String value) {
282
+            this.gnsApellidoPaterno = value;
283
+        }
284
+
285
+        /**
286
+         * Obtiene el valor de la propiedad gnsApellidoMaterno.
287
+         * 
288
+         * @return
289
+         *     possible object is
290
+         *     {@link String }
291
+         *     
292
+         */
293
+        public String getGnsApellidoMaterno() {
294
+            return gnsApellidoMaterno;
295
+        }
296
+
297
+        /**
298
+         * Define el valor de la propiedad gnsApellidoMaterno.
299
+         * 
300
+         * @param value
301
+         *     allowed object is
302
+         *     {@link String }
303
+         *     
304
+         */
305
+        public void setGnsApellidoMaterno(String value) {
306
+            this.gnsApellidoMaterno = value;
307
+        }
308
+
309
+        /**
310
+         * Obtiene el valor de la propiedad gnsRUT.
311
+         * 
312
+         * @return
313
+         *     possible object is
314
+         *     {@link String }
315
+         *     
316
+         */
317
+        public String getGnsRUT() {
318
+            return gnsRUT;
319
+        }
320
+
321
+        /**
322
+         * Define el valor de la propiedad gnsRUT.
323
+         * 
324
+         * @param value
325
+         *     allowed object is
326
+         *     {@link String }
327
+         *     
328
+         */
329
+        public void setGnsRUT(String value) {
330
+            this.gnsRUT = value;
331
+        }
332
+
333
+        /**
334
+         * Obtiene el valor de la propiedad gnsIDRol.
335
+         * 
336
+         */
337
+        public long getGnsIDRol() {
338
+            return gnsIDRol;
339
+        }
340
+
341
+        /**
342
+         * Define el valor de la propiedad gnsIDRol.
343
+         * 
344
+         */
345
+        public void setGnsIDRol(long value) {
346
+            this.gnsIDRol = value;
347
+        }
348
+
349
+        /**
350
+         * Obtiene el valor de la propiedad gnsNombredeUsuario.
351
+         * 
352
+         * @return
353
+         *     possible object is
354
+         *     {@link String }
355
+         *     
356
+         */
357
+        public String getGnsNombredeUsuario() {
358
+            return gnsNombredeUsuario;
359
+        }
360
+
361
+        /**
362
+         * Define el valor de la propiedad gnsNombredeUsuario.
363
+         * 
364
+         * @param value
365
+         *     allowed object is
366
+         *     {@link String }
367
+         *     
368
+         */
369
+        public void setGnsNombredeUsuario(String value) {
370
+            this.gnsNombredeUsuario = value;
371
+        }
372
+
373
+        /**
374
+         * Obtiene el valor de la propiedad gnsContrasena.
375
+         * 
376
+         * @return
377
+         *     possible object is
378
+         *     {@link String }
379
+         *     
380
+         */
381
+        public String getGnsContrasena() {
382
+            return gnsContrasena;
383
+        }
384
+
385
+        /**
386
+         * Define el valor de la propiedad gnsContrasena.
387
+         * 
388
+         * @param value
389
+         *     allowed object is
390
+         *     {@link String }
391
+         *     
392
+         */
393
+        public void setGnsContrasena(String value) {
394
+            this.gnsContrasena = value;
395
+        }
396
+
397
+        /**
398
+         * Obtiene el valor de la propiedad gnsCodigoSucursal.
399
+         * 
400
+         */
401
+        public long getGnsCodigoSucursal() {
402
+            return gnsCodigoSucursal;
403
+        }
404
+
405
+        /**
406
+         * Define el valor de la propiedad gnsCodigoSucursal.
407
+         * 
408
+         */
409
+        public void setGnsCodigoSucursal(long value) {
410
+            this.gnsCodigoSucursal = value;
411
+        }
412
+
413
+        /**
414
+         * Obtiene el valor de la propiedad gnsIDSupervisor.
415
+         * 
416
+         */
417
+        public long getGnsIDSupervisor() {
418
+            return gnsIDSupervisor;
419
+        }
420
+
421
+        /**
422
+         * Define el valor de la propiedad gnsIDSupervisor.
423
+         * 
424
+         */
425
+        public void setGnsIDSupervisor(long value) {
426
+            this.gnsIDSupervisor = value;
427
+        }
428
+
429
+    }
430
+
431
+
432
+    /**
433
+     * &lt;p&gt;Clase Java para anonymous complex type.
434
+     * 
435
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
436
+     * 
437
+     * &lt;pre&gt;
438
+     * &amp;lt;complexType&amp;gt;
439
+     *   &amp;lt;complexContent&amp;gt;
440
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
441
+     *       &amp;lt;sequence&amp;gt;
442
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
443
+     *           &amp;lt;complexType&amp;gt;
444
+     *             &amp;lt;complexContent&amp;gt;
445
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
446
+     *                 &amp;lt;sequence&amp;gt;
447
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
448
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
449
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
450
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
451
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
452
+     *                 &amp;lt;/sequence&amp;gt;
453
+     *               &amp;lt;/restriction&amp;gt;
454
+     *             &amp;lt;/complexContent&amp;gt;
455
+     *           &amp;lt;/complexType&amp;gt;
456
+     *         &amp;lt;/element&amp;gt;
457
+     *       &amp;lt;/sequence&amp;gt;
458
+     *     &amp;lt;/restriction&amp;gt;
459
+     *   &amp;lt;/complexContent&amp;gt;
460
+     * &amp;lt;/complexType&amp;gt;
461
+     * &lt;/pre&gt;
462
+     * 
463
+     * 
464
+     */
465
+    @XmlAccessorType(XmlAccessType.FIELD)
466
+    @XmlType(name = "", propOrder = {
467
+        "msgRqHdr"
468
+    })
469
+    public static class BaseSvcRq {
470
+
471
+        @XmlElement(name = "MsgRqHdr", required = true)
472
+        protected AddUserRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
473
+
474
+        /**
475
+         * Obtiene el valor de la propiedad msgRqHdr.
476
+         * 
477
+         * @return
478
+         *     possible object is
479
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
480
+         *     
481
+         */
482
+        public AddUserRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
483
+            return msgRqHdr;
484
+        }
485
+
486
+        /**
487
+         * Define el valor de la propiedad msgRqHdr.
488
+         * 
489
+         * @param value
490
+         *     allowed object is
491
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
492
+         *     
493
+         */
494
+        public void setMsgRqHdr(AddUserRequest.BaseSvcRq.MsgRqHdr value) {
495
+            this.msgRqHdr = value;
496
+        }
497
+
498
+
499
+        /**
500
+         * &lt;p&gt;Clase Java para anonymous complex type.
501
+         * 
502
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
503
+         * 
504
+         * &lt;pre&gt;
505
+         * &amp;lt;complexType&amp;gt;
506
+         *   &amp;lt;complexContent&amp;gt;
507
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
508
+         *       &amp;lt;sequence&amp;gt;
509
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
510
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
511
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
512
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
513
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
514
+         *       &amp;lt;/sequence&amp;gt;
515
+         *     &amp;lt;/restriction&amp;gt;
516
+         *   &amp;lt;/complexContent&amp;gt;
517
+         * &amp;lt;/complexType&amp;gt;
518
+         * &lt;/pre&gt;
519
+         * 
520
+         * 
521
+         */
522
+        @XmlAccessorType(XmlAccessType.FIELD)
523
+        @XmlType(name = "", propOrder = {
524
+            "instance",
525
+            "bankId",
526
+            "originatorName",
527
+            "requestCode",
528
+            "requestName"
529
+        })
530
+        public static class MsgRqHdr {
531
+
532
+            @XmlElement(name = "Instance", required = true)
533
+            protected String instance;
534
+            @XmlElement(name = "BankId")
535
+            protected short bankId;
536
+            @XmlElement(name = "OriginatorName", required = true)
537
+            protected String originatorName;
538
+            @XmlElement(name = "RequestCode")
539
+            protected short requestCode;
540
+            @XmlElement(name = "RequestName", required = true)
541
+            protected String requestName;
542
+
543
+            /**
544
+             * Obtiene el valor de la propiedad instance.
545
+             * 
546
+             * @return
547
+             *     possible object is
548
+             *     {@link String }
549
+             *     
550
+             */
551
+            public String getInstance() {
552
+                return instance;
553
+            }
554
+
555
+            /**
556
+             * Define el valor de la propiedad instance.
557
+             * 
558
+             * @param value
559
+             *     allowed object is
560
+             *     {@link String }
561
+             *     
562
+             */
563
+            public void setInstance(String value) {
564
+                this.instance = value;
565
+            }
566
+
567
+            /**
568
+             * Obtiene el valor de la propiedad bankId.
569
+             * 
570
+             */
571
+            public short getBankId() {
572
+                return bankId;
573
+            }
574
+
575
+            /**
576
+             * Define el valor de la propiedad bankId.
577
+             * 
578
+             */
579
+            public void setBankId(short value) {
580
+                this.bankId = value;
581
+            }
582
+
583
+            /**
584
+             * Obtiene el valor de la propiedad originatorName.
585
+             * 
586
+             * @return
587
+             *     possible object is
588
+             *     {@link String }
589
+             *     
590
+             */
591
+            public String getOriginatorName() {
592
+                return originatorName;
593
+            }
594
+
595
+            /**
596
+             * Define el valor de la propiedad originatorName.
597
+             * 
598
+             * @param value
599
+             *     allowed object is
600
+             *     {@link String }
601
+             *     
602
+             */
603
+            public void setOriginatorName(String value) {
604
+                this.originatorName = value;
605
+            }
606
+
607
+            /**
608
+             * Obtiene el valor de la propiedad requestCode.
609
+             * 
610
+             */
611
+            public short getRequestCode() {
612
+                return requestCode;
613
+            }
614
+
615
+            /**
616
+             * Define el valor de la propiedad requestCode.
617
+             * 
618
+             */
619
+            public void setRequestCode(short value) {
620
+                this.requestCode = value;
621
+            }
622
+
623
+            /**
624
+             * Obtiene el valor de la propiedad requestName.
625
+             * 
626
+             * @return
627
+             *     possible object is
628
+             *     {@link String }
629
+             *     
630
+             */
631
+            public String getRequestName() {
632
+                return requestName;
633
+            }
634
+
635
+            /**
636
+             * Define el valor de la propiedad requestName.
637
+             * 
638
+             * @param value
639
+             *     allowed object is
640
+             *     {@link String }
641
+             *     
642
+             */
643
+            public void setRequestName(String value) {
644
+                this.requestName = value;
645
+            }
646
+
647
+        }
648
+
649
+    }
650
+
651
+
652
+    /**
653
+     * &lt;p&gt;Clase Java para anonymous complex type.
654
+     * 
655
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
656
+     * 
657
+     * &lt;pre&gt;
658
+     * &amp;lt;complexType&amp;gt;
659
+     *   &amp;lt;complexContent&amp;gt;
660
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
661
+     *       &amp;lt;sequence&amp;gt;
662
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
663
+     *       &amp;lt;/sequence&amp;gt;
664
+     *     &amp;lt;/restriction&amp;gt;
665
+     *   &amp;lt;/complexContent&amp;gt;
666
+     * &amp;lt;/complexType&amp;gt;
667
+     * &lt;/pre&gt;
668
+     * 
669
+     * 
670
+     */
671
+    @XmlAccessorType(XmlAccessType.FIELD)
672
+    @XmlType(name = "", propOrder = {
673
+        "sessionLoginId"
674
+    })
675
+    public static class SignonRq {
676
+
677
+        @XmlElement(name = "SessionLoginId", required = true)
678
+        protected String sessionLoginId;
679
+
680
+        /**
681
+         * Obtiene el valor de la propiedad sessionLoginId.
682
+         * 
683
+         * @return
684
+         *     possible object is
685
+         *     {@link String }
686
+         *     
687
+         */
688
+        public String getSessionLoginId() {
689
+            return sessionLoginId;
690
+        }
691
+
692
+        /**
693
+         * Define el valor de la propiedad sessionLoginId.
694
+         * 
695
+         * @param value
696
+         *     allowed object is
697
+         *     {@link String }
698
+         *     
699
+         */
700
+        public void setSessionLoginId(String value) {
701
+            this.sessionLoginId = value;
702
+        }
703
+
704
+    }
705
+
706
+}

+ 512 - 0
src/GenesisRequest/AssignUpdateRoleByUserRequest.java 查看文件

@@ -0,0 +1,512 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:04:30 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_AssignUpdateRoleByUserRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
65
+ *           &amp;lt;complexType&amp;gt;
66
+ *             &amp;lt;complexContent&amp;gt;
67
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                 &amp;lt;sequence&amp;gt;
69
+ *                   &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                   &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
71
+ *                 &amp;lt;/sequence&amp;gt;
72
+ *               &amp;lt;/restriction&amp;gt;
73
+ *             &amp;lt;/complexContent&amp;gt;
74
+ *           &amp;lt;/complexType&amp;gt;
75
+ *         &amp;lt;/element&amp;gt;
76
+ *       &amp;lt;/sequence&amp;gt;
77
+ *     &amp;lt;/restriction&amp;gt;
78
+ *   &amp;lt;/complexContent&amp;gt;
79
+ * &amp;lt;/complexType&amp;gt;
80
+ * &lt;/pre&gt;
81
+ * 
82
+ * 
83
+ */
84
+@XmlAccessorType(XmlAccessType.FIELD)
85
+@XmlType(name = "", propOrder = {
86
+    "signonRq",
87
+    "baseSvcRq",
88
+    "bankSvcRq"
89
+})
90
+@XmlRootElement(name = "Genesis")
91
+public class AssignUpdateRoleByUserRequest {
92
+
93
+    @XmlElement(name = "SignonRq", required = true)
94
+    protected AssignUpdateRoleByUserRequest.SignonRq signonRq;
95
+    @XmlElement(name = "BaseSvcRq", required = true)
96
+    protected AssignUpdateRoleByUserRequest.BaseSvcRq baseSvcRq;
97
+    @XmlElement(name = "BankSvcRq", required = true)
98
+    protected AssignUpdateRoleByUserRequest.BankSvcRq bankSvcRq;
99
+
100
+    /**
101
+     * Obtiene el valor de la propiedad signonRq.
102
+     * 
103
+     * @return
104
+     *     possible object is
105
+     *     {@link Genesis.SignonRq }
106
+     *     
107
+     */
108
+    public AssignUpdateRoleByUserRequest.SignonRq getSignonRq() {
109
+        return signonRq;
110
+    }
111
+
112
+    /**
113
+     * Define el valor de la propiedad signonRq.
114
+     * 
115
+     * @param value
116
+     *     allowed object is
117
+     *     {@link Genesis.SignonRq }
118
+     *     
119
+     */
120
+    public void setSignonRq(AssignUpdateRoleByUserRequest.SignonRq value) {
121
+        this.signonRq = value;
122
+    }
123
+
124
+    /**
125
+     * Obtiene el valor de la propiedad baseSvcRq.
126
+     * 
127
+     * @return
128
+     *     possible object is
129
+     *     {@link Genesis.BaseSvcRq }
130
+     *     
131
+     */
132
+    public AssignUpdateRoleByUserRequest.BaseSvcRq getBaseSvcRq() {
133
+        return baseSvcRq;
134
+    }
135
+
136
+    /**
137
+     * Define el valor de la propiedad baseSvcRq.
138
+     * 
139
+     * @param value
140
+     *     allowed object is
141
+     *     {@link Genesis.BaseSvcRq }
142
+     *     
143
+     */
144
+    public void setBaseSvcRq(AssignUpdateRoleByUserRequest.BaseSvcRq value) {
145
+        this.baseSvcRq = value;
146
+    }
147
+
148
+    /**
149
+     * Obtiene el valor de la propiedad bankSvcRq.
150
+     * 
151
+     * @return
152
+     *     possible object is
153
+     *     {@link Genesis.BankSvcRq }
154
+     *     
155
+     */
156
+    public AssignUpdateRoleByUserRequest.BankSvcRq getBankSvcRq() {
157
+        return bankSvcRq;
158
+    }
159
+
160
+    /**
161
+     * Define el valor de la propiedad bankSvcRq.
162
+     * 
163
+     * @param value
164
+     *     allowed object is
165
+     *     {@link Genesis.BankSvcRq }
166
+     *     
167
+     */
168
+    public void setBankSvcRq(AssignUpdateRoleByUserRequest.BankSvcRq value) {
169
+        this.bankSvcRq = value;
170
+    }
171
+
172
+
173
+    /**
174
+     * &lt;p&gt;Clase Java para anonymous complex type.
175
+     * 
176
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
177
+     * 
178
+     * &lt;pre&gt;
179
+     * &amp;lt;complexType&amp;gt;
180
+     *   &amp;lt;complexContent&amp;gt;
181
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
182
+     *       &amp;lt;sequence&amp;gt;
183
+     *         &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
184
+     *         &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
185
+     *       &amp;lt;/sequence&amp;gt;
186
+     *     &amp;lt;/restriction&amp;gt;
187
+     *   &amp;lt;/complexContent&amp;gt;
188
+     * &amp;lt;/complexType&amp;gt;
189
+     * &lt;/pre&gt;
190
+     * 
191
+     * 
192
+     */
193
+    @XmlAccessorType(XmlAccessType.FIELD)
194
+    @XmlType(name = "", propOrder = {
195
+        "gnsIDUsuario",
196
+        "gnsIDRol"
197
+    })
198
+    public static class BankSvcRq {
199
+
200
+        protected long gnsIDUsuario;
201
+        protected long gnsIDRol;
202
+
203
+        /**
204
+         * Obtiene el valor de la propiedad gnsIDUsuario.
205
+         * 
206
+         */
207
+        public long getGnsIDUsuario() {
208
+            return gnsIDUsuario;
209
+        }
210
+
211
+        /**
212
+         * Define el valor de la propiedad gnsIDUsuario.
213
+         * 
214
+         */
215
+        public void setGnsIDUsuario(long value) {
216
+            this.gnsIDUsuario = value;
217
+        }
218
+
219
+        /**
220
+         * Obtiene el valor de la propiedad gnsIDRol.
221
+         * 
222
+         */
223
+        public long getGnsIDRol() {
224
+            return gnsIDRol;
225
+        }
226
+
227
+        /**
228
+         * Define el valor de la propiedad gnsIDRol.
229
+         * 
230
+         */
231
+        public void setGnsIDRol(long value) {
232
+            this.gnsIDRol = value;
233
+        }
234
+
235
+    }
236
+
237
+
238
+    /**
239
+     * &lt;p&gt;Clase Java para anonymous complex type.
240
+     * 
241
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
242
+     * 
243
+     * &lt;pre&gt;
244
+     * &amp;lt;complexType&amp;gt;
245
+     *   &amp;lt;complexContent&amp;gt;
246
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
247
+     *       &amp;lt;sequence&amp;gt;
248
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
249
+     *           &amp;lt;complexType&amp;gt;
250
+     *             &amp;lt;complexContent&amp;gt;
251
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
252
+     *                 &amp;lt;sequence&amp;gt;
253
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
254
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
255
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
256
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
257
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
258
+     *                 &amp;lt;/sequence&amp;gt;
259
+     *               &amp;lt;/restriction&amp;gt;
260
+     *             &amp;lt;/complexContent&amp;gt;
261
+     *           &amp;lt;/complexType&amp;gt;
262
+     *         &amp;lt;/element&amp;gt;
263
+     *       &amp;lt;/sequence&amp;gt;
264
+     *     &amp;lt;/restriction&amp;gt;
265
+     *   &amp;lt;/complexContent&amp;gt;
266
+     * &amp;lt;/complexType&amp;gt;
267
+     * &lt;/pre&gt;
268
+     * 
269
+     * 
270
+     */
271
+    @XmlAccessorType(XmlAccessType.FIELD)
272
+    @XmlType(name = "", propOrder = {
273
+        "msgRqHdr"
274
+    })
275
+    public static class BaseSvcRq {
276
+
277
+        @XmlElement(name = "MsgRqHdr", required = true)
278
+        protected AssignUpdateRoleByUserRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
279
+
280
+        /**
281
+         * Obtiene el valor de la propiedad msgRqHdr.
282
+         * 
283
+         * @return
284
+         *     possible object is
285
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
286
+         *     
287
+         */
288
+        public AssignUpdateRoleByUserRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
289
+            return msgRqHdr;
290
+        }
291
+
292
+        /**
293
+         * Define el valor de la propiedad msgRqHdr.
294
+         * 
295
+         * @param value
296
+         *     allowed object is
297
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
298
+         *     
299
+         */
300
+        public void setMsgRqHdr(AssignUpdateRoleByUserRequest.BaseSvcRq.MsgRqHdr value) {
301
+            this.msgRqHdr = value;
302
+        }
303
+
304
+
305
+        /**
306
+         * &lt;p&gt;Clase Java para anonymous complex type.
307
+         * 
308
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
309
+         * 
310
+         * &lt;pre&gt;
311
+         * &amp;lt;complexType&amp;gt;
312
+         *   &amp;lt;complexContent&amp;gt;
313
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
314
+         *       &amp;lt;sequence&amp;gt;
315
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
316
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
317
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
318
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
319
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
320
+         *       &amp;lt;/sequence&amp;gt;
321
+         *     &amp;lt;/restriction&amp;gt;
322
+         *   &amp;lt;/complexContent&amp;gt;
323
+         * &amp;lt;/complexType&amp;gt;
324
+         * &lt;/pre&gt;
325
+         * 
326
+         * 
327
+         */
328
+        @XmlAccessorType(XmlAccessType.FIELD)
329
+        @XmlType(name = "", propOrder = {
330
+            "instance",
331
+            "bankId",
332
+            "originatorName",
333
+            "requestCode",
334
+            "requestName"
335
+        })
336
+        public static class MsgRqHdr {
337
+
338
+            @XmlElement(name = "Instance", required = true)
339
+            protected String instance;
340
+            @XmlElement(name = "BankId")
341
+            protected short bankId;
342
+            @XmlElement(name = "OriginatorName", required = true)
343
+            protected String originatorName;
344
+            @XmlElement(name = "RequestCode")
345
+            protected short requestCode;
346
+            @XmlElement(name = "RequestName", required = true)
347
+            protected String requestName;
348
+
349
+            /**
350
+             * Obtiene el valor de la propiedad instance.
351
+             * 
352
+             * @return
353
+             *     possible object is
354
+             *     {@link String }
355
+             *     
356
+             */
357
+            public String getInstance() {
358
+                return instance;
359
+            }
360
+
361
+            /**
362
+             * Define el valor de la propiedad instance.
363
+             * 
364
+             * @param value
365
+             *     allowed object is
366
+             *     {@link String }
367
+             *     
368
+             */
369
+            public void setInstance(String value) {
370
+                this.instance = value;
371
+            }
372
+
373
+            /**
374
+             * Obtiene el valor de la propiedad bankId.
375
+             * 
376
+             */
377
+            public short getBankId() {
378
+                return bankId;
379
+            }
380
+
381
+            /**
382
+             * Define el valor de la propiedad bankId.
383
+             * 
384
+             */
385
+            public void setBankId(short value) {
386
+                this.bankId = value;
387
+            }
388
+
389
+            /**
390
+             * Obtiene el valor de la propiedad originatorName.
391
+             * 
392
+             * @return
393
+             *     possible object is
394
+             *     {@link String }
395
+             *     
396
+             */
397
+            public String getOriginatorName() {
398
+                return originatorName;
399
+            }
400
+
401
+            /**
402
+             * Define el valor de la propiedad originatorName.
403
+             * 
404
+             * @param value
405
+             *     allowed object is
406
+             *     {@link String }
407
+             *     
408
+             */
409
+            public void setOriginatorName(String value) {
410
+                this.originatorName = value;
411
+            }
412
+
413
+            /**
414
+             * Obtiene el valor de la propiedad requestCode.
415
+             * 
416
+             */
417
+            public short getRequestCode() {
418
+                return requestCode;
419
+            }
420
+
421
+            /**
422
+             * Define el valor de la propiedad requestCode.
423
+             * 
424
+             */
425
+            public void setRequestCode(short value) {
426
+                this.requestCode = value;
427
+            }
428
+
429
+            /**
430
+             * Obtiene el valor de la propiedad requestName.
431
+             * 
432
+             * @return
433
+             *     possible object is
434
+             *     {@link String }
435
+             *     
436
+             */
437
+            public String getRequestName() {
438
+                return requestName;
439
+            }
440
+
441
+            /**
442
+             * Define el valor de la propiedad requestName.
443
+             * 
444
+             * @param value
445
+             *     allowed object is
446
+             *     {@link String }
447
+             *     
448
+             */
449
+            public void setRequestName(String value) {
450
+                this.requestName = value;
451
+            }
452
+
453
+        }
454
+
455
+    }
456
+
457
+
458
+    /**
459
+     * &lt;p&gt;Clase Java para anonymous complex type.
460
+     * 
461
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
462
+     * 
463
+     * &lt;pre&gt;
464
+     * &amp;lt;complexType&amp;gt;
465
+     *   &amp;lt;complexContent&amp;gt;
466
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
467
+     *       &amp;lt;sequence&amp;gt;
468
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
469
+     *       &amp;lt;/sequence&amp;gt;
470
+     *     &amp;lt;/restriction&amp;gt;
471
+     *   &amp;lt;/complexContent&amp;gt;
472
+     * &amp;lt;/complexType&amp;gt;
473
+     * &lt;/pre&gt;
474
+     * 
475
+     * 
476
+     */
477
+    @XmlAccessorType(XmlAccessType.FIELD)
478
+    @XmlType(name = "", propOrder = {
479
+        "sessionLoginId"
480
+    })
481
+    public static class SignonRq {
482
+
483
+        @XmlElement(name = "SessionLoginId", required = true)
484
+        protected String sessionLoginId;
485
+
486
+        /**
487
+         * Obtiene el valor de la propiedad sessionLoginId.
488
+         * 
489
+         * @return
490
+         *     possible object is
491
+         *     {@link String }
492
+         *     
493
+         */
494
+        public String getSessionLoginId() {
495
+            return sessionLoginId;
496
+        }
497
+
498
+        /**
499
+         * Define el valor de la propiedad sessionLoginId.
500
+         * 
501
+         * @param value
502
+         *     allowed object is
503
+         *     {@link String }
504
+         *     
505
+         */
506
+        public void setSessionLoginId(String value) {
507
+            this.sessionLoginId = value;
508
+        }
509
+
510
+    }
511
+
512
+}

+ 436 - 0
src/GenesisRequest/BranchListRequest.java 查看文件

@@ -0,0 +1,436 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:15:24 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_BranchListRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
65
+ *       &amp;lt;/sequence&amp;gt;
66
+ *     &amp;lt;/restriction&amp;gt;
67
+ *   &amp;lt;/complexContent&amp;gt;
68
+ * &amp;lt;/complexType&amp;gt;
69
+ * &lt;/pre&gt;
70
+ * 
71
+ * 
72
+ */
73
+@XmlAccessorType(XmlAccessType.FIELD)
74
+@XmlType(name = "", propOrder = {
75
+    "signonRq",
76
+    "baseSvcRq",
77
+    "bankSvcRq"
78
+})
79
+@XmlRootElement(name = "Genesis")
80
+public class BranchListRequest {
81
+
82
+    @XmlElement(name = "SignonRq", required = true)
83
+    protected BranchListRequest.SignonRq signonRq;
84
+    @XmlElement(name = "BaseSvcRq", required = true)
85
+    protected BranchListRequest.BaseSvcRq baseSvcRq;
86
+    @XmlElement(name = "BankSvcRq", required = true)
87
+    protected String bankSvcRq;
88
+
89
+    /**
90
+     * Obtiene el valor de la propiedad signonRq.
91
+     * 
92
+     * @return
93
+     *     possible object is
94
+     *     {@link Genesis.SignonRq }
95
+     *     
96
+     */
97
+    public BranchListRequest.SignonRq getSignonRq() {
98
+        return signonRq;
99
+    }
100
+
101
+    /**
102
+     * Define el valor de la propiedad signonRq.
103
+     * 
104
+     * @param value
105
+     *     allowed object is
106
+     *     {@link Genesis.SignonRq }
107
+     *     
108
+     */
109
+    public void setSignonRq(BranchListRequest.SignonRq value) {
110
+        this.signonRq = value;
111
+    }
112
+
113
+    /**
114
+     * Obtiene el valor de la propiedad baseSvcRq.
115
+     * 
116
+     * @return
117
+     *     possible object is
118
+     *     {@link Genesis.BaseSvcRq }
119
+     *     
120
+     */
121
+    public BranchListRequest.BaseSvcRq getBaseSvcRq() {
122
+        return baseSvcRq;
123
+    }
124
+
125
+    /**
126
+     * Define el valor de la propiedad baseSvcRq.
127
+     * 
128
+     * @param value
129
+     *     allowed object is
130
+     *     {@link Genesis.BaseSvcRq }
131
+     *     
132
+     */
133
+    public void setBaseSvcRq(BranchListRequest.BaseSvcRq value) {
134
+        this.baseSvcRq = value;
135
+    }
136
+
137
+    /**
138
+     * Obtiene el valor de la propiedad bankSvcRq.
139
+     * 
140
+     * @return
141
+     *     possible object is
142
+     *     {@link String }
143
+     *     
144
+     */
145
+    public String getBankSvcRq() {
146
+        return bankSvcRq;
147
+    }
148
+
149
+    /**
150
+     * Define el valor de la propiedad bankSvcRq.
151
+     * 
152
+     * @param value
153
+     *     allowed object is
154
+     *     {@link String }
155
+     *     
156
+     */
157
+    public void setBankSvcRq(String value) {
158
+        this.bankSvcRq = value;
159
+    }
160
+
161
+
162
+    /**
163
+     * &lt;p&gt;Clase Java para anonymous complex type.
164
+     * 
165
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
166
+     * 
167
+     * &lt;pre&gt;
168
+     * &amp;lt;complexType&amp;gt;
169
+     *   &amp;lt;complexContent&amp;gt;
170
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
171
+     *       &amp;lt;sequence&amp;gt;
172
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
173
+     *           &amp;lt;complexType&amp;gt;
174
+     *             &amp;lt;complexContent&amp;gt;
175
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
176
+     *                 &amp;lt;sequence&amp;gt;
177
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
178
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
179
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
180
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
181
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
182
+     *                 &amp;lt;/sequence&amp;gt;
183
+     *               &amp;lt;/restriction&amp;gt;
184
+     *             &amp;lt;/complexContent&amp;gt;
185
+     *           &amp;lt;/complexType&amp;gt;
186
+     *         &amp;lt;/element&amp;gt;
187
+     *       &amp;lt;/sequence&amp;gt;
188
+     *     &amp;lt;/restriction&amp;gt;
189
+     *   &amp;lt;/complexContent&amp;gt;
190
+     * &amp;lt;/complexType&amp;gt;
191
+     * &lt;/pre&gt;
192
+     * 
193
+     * 
194
+     */
195
+    @XmlAccessorType(XmlAccessType.FIELD)
196
+    @XmlType(name = "", propOrder = {
197
+        "msgRqHdr"
198
+    })
199
+    public static class BaseSvcRq {
200
+
201
+        @XmlElement(name = "MsgRqHdr", required = true)
202
+        protected BranchListRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
203
+
204
+        /**
205
+         * Obtiene el valor de la propiedad msgRqHdr.
206
+         * 
207
+         * @return
208
+         *     possible object is
209
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
210
+         *     
211
+         */
212
+        public BranchListRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
213
+            return msgRqHdr;
214
+        }
215
+
216
+        /**
217
+         * Define el valor de la propiedad msgRqHdr.
218
+         * 
219
+         * @param value
220
+         *     allowed object is
221
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
222
+         *     
223
+         */
224
+        public void setMsgRqHdr(BranchListRequest.BaseSvcRq.MsgRqHdr value) {
225
+            this.msgRqHdr = value;
226
+        }
227
+
228
+
229
+        /**
230
+         * &lt;p&gt;Clase Java para anonymous complex type.
231
+         * 
232
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
233
+         * 
234
+         * &lt;pre&gt;
235
+         * &amp;lt;complexType&amp;gt;
236
+         *   &amp;lt;complexContent&amp;gt;
237
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
238
+         *       &amp;lt;sequence&amp;gt;
239
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
240
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
241
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
242
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
243
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
244
+         *       &amp;lt;/sequence&amp;gt;
245
+         *     &amp;lt;/restriction&amp;gt;
246
+         *   &amp;lt;/complexContent&amp;gt;
247
+         * &amp;lt;/complexType&amp;gt;
248
+         * &lt;/pre&gt;
249
+         * 
250
+         * 
251
+         */
252
+        @XmlAccessorType(XmlAccessType.FIELD)
253
+        @XmlType(name = "", propOrder = {
254
+            "instance",
255
+            "bankId",
256
+            "originatorName",
257
+            "requestCode",
258
+            "requestName"
259
+        })
260
+        public static class MsgRqHdr {
261
+
262
+            @XmlElement(name = "Instance", required = true)
263
+            protected String instance;
264
+            @XmlElement(name = "BankId")
265
+            protected short bankId;
266
+            @XmlElement(name = "OriginatorName", required = true)
267
+            protected String originatorName;
268
+            @XmlElement(name = "RequestCode")
269
+            protected short requestCode;
270
+            @XmlElement(name = "RequestName", required = true)
271
+            protected String requestName;
272
+
273
+            /**
274
+             * Obtiene el valor de la propiedad instance.
275
+             * 
276
+             * @return
277
+             *     possible object is
278
+             *     {@link String }
279
+             *     
280
+             */
281
+            public String getInstance() {
282
+                return instance;
283
+            }
284
+
285
+            /**
286
+             * Define el valor de la propiedad instance.
287
+             * 
288
+             * @param value
289
+             *     allowed object is
290
+             *     {@link String }
291
+             *     
292
+             */
293
+            public void setInstance(String value) {
294
+                this.instance = value;
295
+            }
296
+
297
+            /**
298
+             * Obtiene el valor de la propiedad bankId.
299
+             * 
300
+             */
301
+            public short getBankId() {
302
+                return bankId;
303
+            }
304
+
305
+            /**
306
+             * Define el valor de la propiedad bankId.
307
+             * 
308
+             */
309
+            public void setBankId(short value) {
310
+                this.bankId = value;
311
+            }
312
+
313
+            /**
314
+             * Obtiene el valor de la propiedad originatorName.
315
+             * 
316
+             * @return
317
+             *     possible object is
318
+             *     {@link String }
319
+             *     
320
+             */
321
+            public String getOriginatorName() {
322
+                return originatorName;
323
+            }
324
+
325
+            /**
326
+             * Define el valor de la propiedad originatorName.
327
+             * 
328
+             * @param value
329
+             *     allowed object is
330
+             *     {@link String }
331
+             *     
332
+             */
333
+            public void setOriginatorName(String value) {
334
+                this.originatorName = value;
335
+            }
336
+
337
+            /**
338
+             * Obtiene el valor de la propiedad requestCode.
339
+             * 
340
+             */
341
+            public short getRequestCode() {
342
+                return requestCode;
343
+            }
344
+
345
+            /**
346
+             * Define el valor de la propiedad requestCode.
347
+             * 
348
+             */
349
+            public void setRequestCode(short value) {
350
+                this.requestCode = value;
351
+            }
352
+
353
+            /**
354
+             * Obtiene el valor de la propiedad requestName.
355
+             * 
356
+             * @return
357
+             *     possible object is
358
+             *     {@link String }
359
+             *     
360
+             */
361
+            public String getRequestName() {
362
+                return requestName;
363
+            }
364
+
365
+            /**
366
+             * Define el valor de la propiedad requestName.
367
+             * 
368
+             * @param value
369
+             *     allowed object is
370
+             *     {@link String }
371
+             *     
372
+             */
373
+            public void setRequestName(String value) {
374
+                this.requestName = value;
375
+            }
376
+
377
+        }
378
+
379
+    }
380
+
381
+
382
+    /**
383
+     * &lt;p&gt;Clase Java para anonymous complex type.
384
+     * 
385
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
386
+     * 
387
+     * &lt;pre&gt;
388
+     * &amp;lt;complexType&amp;gt;
389
+     *   &amp;lt;complexContent&amp;gt;
390
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
391
+     *       &amp;lt;sequence&amp;gt;
392
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
393
+     *       &amp;lt;/sequence&amp;gt;
394
+     *     &amp;lt;/restriction&amp;gt;
395
+     *   &amp;lt;/complexContent&amp;gt;
396
+     * &amp;lt;/complexType&amp;gt;
397
+     * &lt;/pre&gt;
398
+     * 
399
+     * 
400
+     */
401
+    @XmlAccessorType(XmlAccessType.FIELD)
402
+    @XmlType(name = "", propOrder = {
403
+        "sessionLoginId"
404
+    })
405
+    public static class SignonRq {
406
+
407
+        @XmlElement(name = "SessionLoginId", required = true)
408
+        protected String sessionLoginId;
409
+
410
+        /**
411
+         * Obtiene el valor de la propiedad sessionLoginId.
412
+         * 
413
+         * @return
414
+         *     possible object is
415
+         *     {@link String }
416
+         *     
417
+         */
418
+        public String getSessionLoginId() {
419
+            return sessionLoginId;
420
+        }
421
+
422
+        /**
423
+         * Define el valor de la propiedad sessionLoginId.
424
+         * 
425
+         * @param value
426
+         *     allowed object is
427
+         *     {@link String }
428
+         *     
429
+         */
430
+        public void setSessionLoginId(String value) {
431
+            this.sessionLoginId = value;
432
+        }
433
+
434
+    }
435
+
436
+}

+ 492 - 0
src/GenesisRequest/DeleteUserRequest.java 查看文件

@@ -0,0 +1,492 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.16 a las 07:15:30 AM COT 
6
+//
7
+
8
+
9
+package com.vespot_DeleteUserRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
65
+ *           &amp;lt;complexType&amp;gt;
66
+ *             &amp;lt;complexContent&amp;gt;
67
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                 &amp;lt;sequence&amp;gt;
69
+ *                   &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                 &amp;lt;/sequence&amp;gt;
71
+ *               &amp;lt;/restriction&amp;gt;
72
+ *             &amp;lt;/complexContent&amp;gt;
73
+ *           &amp;lt;/complexType&amp;gt;
74
+ *         &amp;lt;/element&amp;gt;
75
+ *       &amp;lt;/sequence&amp;gt;
76
+ *     &amp;lt;/restriction&amp;gt;
77
+ *   &amp;lt;/complexContent&amp;gt;
78
+ * &amp;lt;/complexType&amp;gt;
79
+ * &lt;/pre&gt;
80
+ * 
81
+ * 
82
+ */
83
+@XmlAccessorType(XmlAccessType.FIELD)
84
+@XmlType(name = "", propOrder = {
85
+    "signonRq",
86
+    "baseSvcRq",
87
+    "bankSvcRq"
88
+})
89
+@XmlRootElement(name = "Genesis")
90
+public class DeleteUserRequest {
91
+
92
+    @XmlElement(name = "SignonRq", required = true)
93
+    protected DeleteUserRequest.SignonRq signonRq;
94
+    @XmlElement(name = "BaseSvcRq", required = true)
95
+    protected DeleteUserRequest.BaseSvcRq baseSvcRq;
96
+    @XmlElement(name = "BankSvcRq", required = true)
97
+    protected DeleteUserRequest.BankSvcRq bankSvcRq;
98
+
99
+    /**
100
+     * Obtiene el valor de la propiedad signonRq.
101
+     * 
102
+     * @return
103
+     *     possible object is
104
+     *     {@link Genesis.SignonRq }
105
+     *     
106
+     */
107
+    public DeleteUserRequest.SignonRq getSignonRq() {
108
+        return signonRq;
109
+    }
110
+
111
+    /**
112
+     * Define el valor de la propiedad signonRq.
113
+     * 
114
+     * @param value
115
+     *     allowed object is
116
+     *     {@link Genesis.SignonRq }
117
+     *     
118
+     */
119
+    public void setSignonRq(DeleteUserRequest.SignonRq value) {
120
+        this.signonRq = value;
121
+    }
122
+
123
+    /**
124
+     * Obtiene el valor de la propiedad baseSvcRq.
125
+     * 
126
+     * @return
127
+     *     possible object is
128
+     *     {@link Genesis.BaseSvcRq }
129
+     *     
130
+     */
131
+    public DeleteUserRequest.BaseSvcRq getBaseSvcRq() {
132
+        return baseSvcRq;
133
+    }
134
+
135
+    /**
136
+     * Define el valor de la propiedad baseSvcRq.
137
+     * 
138
+     * @param value
139
+     *     allowed object is
140
+     *     {@link Genesis.BaseSvcRq }
141
+     *     
142
+     */
143
+    public void setBaseSvcRq(DeleteUserRequest.BaseSvcRq value) {
144
+        this.baseSvcRq = value;
145
+    }
146
+
147
+    /**
148
+     * Obtiene el valor de la propiedad bankSvcRq.
149
+     * 
150
+     * @return
151
+     *     possible object is
152
+     *     {@link Genesis.BankSvcRq }
153
+     *     
154
+     */
155
+    public DeleteUserRequest.BankSvcRq getBankSvcRq() {
156
+        return bankSvcRq;
157
+    }
158
+
159
+    /**
160
+     * Define el valor de la propiedad bankSvcRq.
161
+     * 
162
+     * @param value
163
+     *     allowed object is
164
+     *     {@link Genesis.BankSvcRq }
165
+     *     
166
+     */
167
+    public void setBankSvcRq(DeleteUserRequest.BankSvcRq value) {
168
+        this.bankSvcRq = value;
169
+    }
170
+
171
+
172
+    /**
173
+     * &lt;p&gt;Clase Java para anonymous complex type.
174
+     * 
175
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
176
+     * 
177
+     * &lt;pre&gt;
178
+     * &amp;lt;complexType&amp;gt;
179
+     *   &amp;lt;complexContent&amp;gt;
180
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
181
+     *       &amp;lt;sequence&amp;gt;
182
+     *         &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
183
+     *       &amp;lt;/sequence&amp;gt;
184
+     *     &amp;lt;/restriction&amp;gt;
185
+     *   &amp;lt;/complexContent&amp;gt;
186
+     * &amp;lt;/complexType&amp;gt;
187
+     * &lt;/pre&gt;
188
+     * 
189
+     * 
190
+     */
191
+    @XmlAccessorType(XmlAccessType.FIELD)
192
+    @XmlType(name = "", propOrder = {
193
+        "gnsIDUsuario"
194
+    })
195
+    public static class BankSvcRq {
196
+
197
+        protected long gnsIDUsuario;
198
+
199
+        /**
200
+         * Obtiene el valor de la propiedad gnsIDUsuario.
201
+         * 
202
+         */
203
+        public long getGnsIDUsuario() {
204
+            return gnsIDUsuario;
205
+        }
206
+
207
+        /**
208
+         * Define el valor de la propiedad gnsIDUsuario.
209
+         * 
210
+         */
211
+        public void setGnsIDUsuario(long value) {
212
+            this.gnsIDUsuario = value;
213
+        }
214
+
215
+    }
216
+
217
+
218
+    /**
219
+     * &lt;p&gt;Clase Java para anonymous complex type.
220
+     * 
221
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
222
+     * 
223
+     * &lt;pre&gt;
224
+     * &amp;lt;complexType&amp;gt;
225
+     *   &amp;lt;complexContent&amp;gt;
226
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
227
+     *       &amp;lt;sequence&amp;gt;
228
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
229
+     *           &amp;lt;complexType&amp;gt;
230
+     *             &amp;lt;complexContent&amp;gt;
231
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
232
+     *                 &amp;lt;sequence&amp;gt;
233
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
234
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
235
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
236
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
237
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
238
+     *                 &amp;lt;/sequence&amp;gt;
239
+     *               &amp;lt;/restriction&amp;gt;
240
+     *             &amp;lt;/complexContent&amp;gt;
241
+     *           &amp;lt;/complexType&amp;gt;
242
+     *         &amp;lt;/element&amp;gt;
243
+     *       &amp;lt;/sequence&amp;gt;
244
+     *     &amp;lt;/restriction&amp;gt;
245
+     *   &amp;lt;/complexContent&amp;gt;
246
+     * &amp;lt;/complexType&amp;gt;
247
+     * &lt;/pre&gt;
248
+     * 
249
+     * 
250
+     */
251
+    @XmlAccessorType(XmlAccessType.FIELD)
252
+    @XmlType(name = "", propOrder = {
253
+        "msgRqHdr"
254
+    })
255
+    public static class BaseSvcRq {
256
+
257
+        @XmlElement(name = "MsgRqHdr", required = true)
258
+        protected DeleteUserRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
259
+
260
+        /**
261
+         * Obtiene el valor de la propiedad msgRqHdr.
262
+         * 
263
+         * @return
264
+         *     possible object is
265
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
266
+         *     
267
+         */
268
+        public DeleteUserRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
269
+            return msgRqHdr;
270
+        }
271
+
272
+        /**
273
+         * Define el valor de la propiedad msgRqHdr.
274
+         * 
275
+         * @param value
276
+         *     allowed object is
277
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
278
+         *     
279
+         */
280
+        public void setMsgRqHdr(DeleteUserRequest.BaseSvcRq.MsgRqHdr value) {
281
+            this.msgRqHdr = value;
282
+        }
283
+
284
+
285
+        /**
286
+         * &lt;p&gt;Clase Java para anonymous complex type.
287
+         * 
288
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
289
+         * 
290
+         * &lt;pre&gt;
291
+         * &amp;lt;complexType&amp;gt;
292
+         *   &amp;lt;complexContent&amp;gt;
293
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
294
+         *       &amp;lt;sequence&amp;gt;
295
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
296
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
297
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
298
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
299
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
300
+         *       &amp;lt;/sequence&amp;gt;
301
+         *     &amp;lt;/restriction&amp;gt;
302
+         *   &amp;lt;/complexContent&amp;gt;
303
+         * &amp;lt;/complexType&amp;gt;
304
+         * &lt;/pre&gt;
305
+         * 
306
+         * 
307
+         */
308
+        @XmlAccessorType(XmlAccessType.FIELD)
309
+        @XmlType(name = "", propOrder = {
310
+            "instance",
311
+            "bankId",
312
+            "originatorName",
313
+            "requestCode",
314
+            "requestName"
315
+        })
316
+        public static class MsgRqHdr {
317
+
318
+            @XmlElement(name = "Instance", required = true)
319
+            protected String instance;
320
+            @XmlElement(name = "BankId")
321
+            protected short bankId;
322
+            @XmlElement(name = "OriginatorName", required = true)
323
+            protected String originatorName;
324
+            @XmlElement(name = "RequestCode")
325
+            protected short requestCode;
326
+            @XmlElement(name = "RequestName", required = true)
327
+            protected String requestName;
328
+
329
+            /**
330
+             * Obtiene el valor de la propiedad instance.
331
+             * 
332
+             * @return
333
+             *     possible object is
334
+             *     {@link String }
335
+             *     
336
+             */
337
+            public String getInstance() {
338
+                return instance;
339
+            }
340
+
341
+            /**
342
+             * Define el valor de la propiedad instance.
343
+             * 
344
+             * @param value
345
+             *     allowed object is
346
+             *     {@link String }
347
+             *     
348
+             */
349
+            public void setInstance(String value) {
350
+                this.instance = value;
351
+            }
352
+
353
+            /**
354
+             * Obtiene el valor de la propiedad bankId.
355
+             * 
356
+             */
357
+            public short getBankId() {
358
+                return bankId;
359
+            }
360
+
361
+            /**
362
+             * Define el valor de la propiedad bankId.
363
+             * 
364
+             */
365
+            public void setBankId(short value) {
366
+                this.bankId = value;
367
+            }
368
+
369
+            /**
370
+             * Obtiene el valor de la propiedad originatorName.
371
+             * 
372
+             * @return
373
+             *     possible object is
374
+             *     {@link String }
375
+             *     
376
+             */
377
+            public String getOriginatorName() {
378
+                return originatorName;
379
+            }
380
+
381
+            /**
382
+             * Define el valor de la propiedad originatorName.
383
+             * 
384
+             * @param value
385
+             *     allowed object is
386
+             *     {@link String }
387
+             *     
388
+             */
389
+            public void setOriginatorName(String value) {
390
+                this.originatorName = value;
391
+            }
392
+
393
+            /**
394
+             * Obtiene el valor de la propiedad requestCode.
395
+             * 
396
+             */
397
+            public short getRequestCode() {
398
+                return requestCode;
399
+            }
400
+
401
+            /**
402
+             * Define el valor de la propiedad requestCode.
403
+             * 
404
+             */
405
+            public void setRequestCode(short value) {
406
+                this.requestCode = value;
407
+            }
408
+
409
+            /**
410
+             * Obtiene el valor de la propiedad requestName.
411
+             * 
412
+             * @return
413
+             *     possible object is
414
+             *     {@link String }
415
+             *     
416
+             */
417
+            public String getRequestName() {
418
+                return requestName;
419
+            }
420
+
421
+            /**
422
+             * Define el valor de la propiedad requestName.
423
+             * 
424
+             * @param value
425
+             *     allowed object is
426
+             *     {@link String }
427
+             *     
428
+             */
429
+            public void setRequestName(String value) {
430
+                this.requestName = value;
431
+            }
432
+
433
+        }
434
+
435
+    }
436
+
437
+
438
+    /**
439
+     * &lt;p&gt;Clase Java para anonymous complex type.
440
+     * 
441
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
442
+     * 
443
+     * &lt;pre&gt;
444
+     * &amp;lt;complexType&amp;gt;
445
+     *   &amp;lt;complexContent&amp;gt;
446
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
447
+     *       &amp;lt;sequence&amp;gt;
448
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
449
+     *       &amp;lt;/sequence&amp;gt;
450
+     *     &amp;lt;/restriction&amp;gt;
451
+     *   &amp;lt;/complexContent&amp;gt;
452
+     * &amp;lt;/complexType&amp;gt;
453
+     * &lt;/pre&gt;
454
+     * 
455
+     * 
456
+     */
457
+    @XmlAccessorType(XmlAccessType.FIELD)
458
+    @XmlType(name = "", propOrder = {
459
+        "sessionLoginId"
460
+    })
461
+    public static class SignonRq {
462
+
463
+        @XmlElement(name = "SessionLoginId", required = true)
464
+        protected String sessionLoginId;
465
+
466
+        /**
467
+         * Obtiene el valor de la propiedad sessionLoginId.
468
+         * 
469
+         * @return
470
+         *     possible object is
471
+         *     {@link String }
472
+         *     
473
+         */
474
+        public String getSessionLoginId() {
475
+            return sessionLoginId;
476
+        }
477
+
478
+        /**
479
+         * Define el valor de la propiedad sessionLoginId.
480
+         * 
481
+         * @param value
482
+         *     allowed object is
483
+         *     {@link String }
484
+         *     
485
+         */
486
+        public void setSessionLoginId(String value) {
487
+            this.sessionLoginId = value;
488
+        }
489
+
490
+    }
491
+
492
+}

+ 436 - 0
src/GenesisRequest/RoleListRequest.java 查看文件

@@ -0,0 +1,436 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:24:09 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_RoleListRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
65
+ *       &amp;lt;/sequence&amp;gt;
66
+ *     &amp;lt;/restriction&amp;gt;
67
+ *   &amp;lt;/complexContent&amp;gt;
68
+ * &amp;lt;/complexType&amp;gt;
69
+ * &lt;/pre&gt;
70
+ * 
71
+ * 
72
+ */
73
+@XmlAccessorType(XmlAccessType.FIELD)
74
+@XmlType(name = "", propOrder = {
75
+    "signonRq",
76
+    "baseSvcRq",
77
+    "bankSvcRq"
78
+})
79
+@XmlRootElement(name = "Genesis")
80
+public class RoleListRequest {
81
+
82
+    @XmlElement(name = "SignonRq", required = true)
83
+    protected RoleListRequest.SignonRq signonRq;
84
+    @XmlElement(name = "BaseSvcRq", required = true)
85
+    protected RoleListRequest.BaseSvcRq baseSvcRq;
86
+    @XmlElement(name = "BankSvcRq", required = true)
87
+    protected String bankSvcRq;
88
+
89
+    /**
90
+     * Obtiene el valor de la propiedad signonRq.
91
+     * 
92
+     * @return
93
+     *     possible object is
94
+     *     {@link Genesis.SignonRq }
95
+     *     
96
+     */
97
+    public RoleListRequest.SignonRq getSignonRq() {
98
+        return signonRq;
99
+    }
100
+
101
+    /**
102
+     * Define el valor de la propiedad signonRq.
103
+     * 
104
+     * @param value
105
+     *     allowed object is
106
+     *     {@link Genesis.SignonRq }
107
+     *     
108
+     */
109
+    public void setSignonRq(RoleListRequest.SignonRq value) {
110
+        this.signonRq = value;
111
+    }
112
+
113
+    /**
114
+     * Obtiene el valor de la propiedad baseSvcRq.
115
+     * 
116
+     * @return
117
+     *     possible object is
118
+     *     {@link Genesis.BaseSvcRq }
119
+     *     
120
+     */
121
+    public RoleListRequest.BaseSvcRq getBaseSvcRq() {
122
+        return baseSvcRq;
123
+    }
124
+
125
+    /**
126
+     * Define el valor de la propiedad baseSvcRq.
127
+     * 
128
+     * @param value
129
+     *     allowed object is
130
+     *     {@link Genesis.BaseSvcRq }
131
+     *     
132
+     */
133
+    public void setBaseSvcRq(RoleListRequest.BaseSvcRq value) {
134
+        this.baseSvcRq = value;
135
+    }
136
+
137
+    /**
138
+     * Obtiene el valor de la propiedad bankSvcRq.
139
+     * 
140
+     * @return
141
+     *     possible object is
142
+     *     {@link String }
143
+     *     
144
+     */
145
+    public String getBankSvcRq() {
146
+        return bankSvcRq;
147
+    }
148
+
149
+    /**
150
+     * Define el valor de la propiedad bankSvcRq.
151
+     * 
152
+     * @param value
153
+     *     allowed object is
154
+     *     {@link String }
155
+     *     
156
+     */
157
+    public void setBankSvcRq(String value) {
158
+        this.bankSvcRq = value;
159
+    }
160
+
161
+
162
+    /**
163
+     * &lt;p&gt;Clase Java para anonymous complex type.
164
+     * 
165
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
166
+     * 
167
+     * &lt;pre&gt;
168
+     * &amp;lt;complexType&amp;gt;
169
+     *   &amp;lt;complexContent&amp;gt;
170
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
171
+     *       &amp;lt;sequence&amp;gt;
172
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
173
+     *           &amp;lt;complexType&amp;gt;
174
+     *             &amp;lt;complexContent&amp;gt;
175
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
176
+     *                 &amp;lt;sequence&amp;gt;
177
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
178
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
179
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
180
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
181
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
182
+     *                 &amp;lt;/sequence&amp;gt;
183
+     *               &amp;lt;/restriction&amp;gt;
184
+     *             &amp;lt;/complexContent&amp;gt;
185
+     *           &amp;lt;/complexType&amp;gt;
186
+     *         &amp;lt;/element&amp;gt;
187
+     *       &amp;lt;/sequence&amp;gt;
188
+     *     &amp;lt;/restriction&amp;gt;
189
+     *   &amp;lt;/complexContent&amp;gt;
190
+     * &amp;lt;/complexType&amp;gt;
191
+     * &lt;/pre&gt;
192
+     * 
193
+     * 
194
+     */
195
+    @XmlAccessorType(XmlAccessType.FIELD)
196
+    @XmlType(name = "", propOrder = {
197
+        "msgRqHdr"
198
+    })
199
+    public static class BaseSvcRq {
200
+
201
+        @XmlElement(name = "MsgRqHdr", required = true)
202
+        protected RoleListRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
203
+
204
+        /**
205
+         * Obtiene el valor de la propiedad msgRqHdr.
206
+         * 
207
+         * @return
208
+         *     possible object is
209
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
210
+         *     
211
+         */
212
+        public RoleListRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
213
+            return msgRqHdr;
214
+        }
215
+
216
+        /**
217
+         * Define el valor de la propiedad msgRqHdr.
218
+         * 
219
+         * @param value
220
+         *     allowed object is
221
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
222
+         *     
223
+         */
224
+        public void setMsgRqHdr(RoleListRequest.BaseSvcRq.MsgRqHdr value) {
225
+            this.msgRqHdr = value;
226
+        }
227
+
228
+
229
+        /**
230
+         * &lt;p&gt;Clase Java para anonymous complex type.
231
+         * 
232
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
233
+         * 
234
+         * &lt;pre&gt;
235
+         * &amp;lt;complexType&amp;gt;
236
+         *   &amp;lt;complexContent&amp;gt;
237
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
238
+         *       &amp;lt;sequence&amp;gt;
239
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
240
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
241
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
242
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
243
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
244
+         *       &amp;lt;/sequence&amp;gt;
245
+         *     &amp;lt;/restriction&amp;gt;
246
+         *   &amp;lt;/complexContent&amp;gt;
247
+         * &amp;lt;/complexType&amp;gt;
248
+         * &lt;/pre&gt;
249
+         * 
250
+         * 
251
+         */
252
+        @XmlAccessorType(XmlAccessType.FIELD)
253
+        @XmlType(name = "", propOrder = {
254
+            "instance",
255
+            "bankId",
256
+            "originatorName",
257
+            "requestCode",
258
+            "requestName"
259
+        })
260
+        public static class MsgRqHdr {
261
+
262
+            @XmlElement(name = "Instance", required = true)
263
+            protected String instance;
264
+            @XmlElement(name = "BankId")
265
+            protected short bankId;
266
+            @XmlElement(name = "OriginatorName", required = true)
267
+            protected String originatorName;
268
+            @XmlElement(name = "RequestCode")
269
+            protected short requestCode;
270
+            @XmlElement(name = "RequestName", required = true)
271
+            protected String requestName;
272
+
273
+            /**
274
+             * Obtiene el valor de la propiedad instance.
275
+             * 
276
+             * @return
277
+             *     possible object is
278
+             *     {@link String }
279
+             *     
280
+             */
281
+            public String getInstance() {
282
+                return instance;
283
+            }
284
+
285
+            /**
286
+             * Define el valor de la propiedad instance.
287
+             * 
288
+             * @param value
289
+             *     allowed object is
290
+             *     {@link String }
291
+             *     
292
+             */
293
+            public void setInstance(String value) {
294
+                this.instance = value;
295
+            }
296
+
297
+            /**
298
+             * Obtiene el valor de la propiedad bankId.
299
+             * 
300
+             */
301
+            public short getBankId() {
302
+                return bankId;
303
+            }
304
+
305
+            /**
306
+             * Define el valor de la propiedad bankId.
307
+             * 
308
+             */
309
+            public void setBankId(short value) {
310
+                this.bankId = value;
311
+            }
312
+
313
+            /**
314
+             * Obtiene el valor de la propiedad originatorName.
315
+             * 
316
+             * @return
317
+             *     possible object is
318
+             *     {@link String }
319
+             *     
320
+             */
321
+            public String getOriginatorName() {
322
+                return originatorName;
323
+            }
324
+
325
+            /**
326
+             * Define el valor de la propiedad originatorName.
327
+             * 
328
+             * @param value
329
+             *     allowed object is
330
+             *     {@link String }
331
+             *     
332
+             */
333
+            public void setOriginatorName(String value) {
334
+                this.originatorName = value;
335
+            }
336
+
337
+            /**
338
+             * Obtiene el valor de la propiedad requestCode.
339
+             * 
340
+             */
341
+            public short getRequestCode() {
342
+                return requestCode;
343
+            }
344
+
345
+            /**
346
+             * Define el valor de la propiedad requestCode.
347
+             * 
348
+             */
349
+            public void setRequestCode(short value) {
350
+                this.requestCode = value;
351
+            }
352
+
353
+            /**
354
+             * Obtiene el valor de la propiedad requestName.
355
+             * 
356
+             * @return
357
+             *     possible object is
358
+             *     {@link String }
359
+             *     
360
+             */
361
+            public String getRequestName() {
362
+                return requestName;
363
+            }
364
+
365
+            /**
366
+             * Define el valor de la propiedad requestName.
367
+             * 
368
+             * @param value
369
+             *     allowed object is
370
+             *     {@link String }
371
+             *     
372
+             */
373
+            public void setRequestName(String value) {
374
+                this.requestName = value;
375
+            }
376
+
377
+        }
378
+
379
+    }
380
+
381
+
382
+    /**
383
+     * &lt;p&gt;Clase Java para anonymous complex type.
384
+     * 
385
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
386
+     * 
387
+     * &lt;pre&gt;
388
+     * &amp;lt;complexType&amp;gt;
389
+     *   &amp;lt;complexContent&amp;gt;
390
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
391
+     *       &amp;lt;sequence&amp;gt;
392
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
393
+     *       &amp;lt;/sequence&amp;gt;
394
+     *     &amp;lt;/restriction&amp;gt;
395
+     *   &amp;lt;/complexContent&amp;gt;
396
+     * &amp;lt;/complexType&amp;gt;
397
+     * &lt;/pre&gt;
398
+     * 
399
+     * 
400
+     */
401
+    @XmlAccessorType(XmlAccessType.FIELD)
402
+    @XmlType(name = "", propOrder = {
403
+        "sessionLoginId"
404
+    })
405
+    public static class SignonRq {
406
+
407
+        @XmlElement(name = "SessionLoginId", required = true)
408
+        protected String sessionLoginId;
409
+
410
+        /**
411
+         * Obtiene el valor de la propiedad sessionLoginId.
412
+         * 
413
+         * @return
414
+         *     possible object is
415
+         *     {@link String }
416
+         *     
417
+         */
418
+        public String getSessionLoginId() {
419
+            return sessionLoginId;
420
+        }
421
+
422
+        /**
423
+         * Define el valor de la propiedad sessionLoginId.
424
+         * 
425
+         * @param value
426
+         *     allowed object is
427
+         *     {@link String }
428
+         *     
429
+         */
430
+        public void setSessionLoginId(String value) {
431
+            this.sessionLoginId = value;
432
+        }
433
+
434
+    }
435
+
436
+}

+ 533 - 0
src/GenesisRequest/UpdateUserRequest.java 查看文件

@@ -0,0 +1,533 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:26:44 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_UpdateUserRequest;
10
+
11
+import java.io.Serializable;
12
+import java.util.ArrayList;
13
+import java.util.List;
14
+import javax.xml.bind.JAXBElement;
15
+import javax.xml.bind.annotation.XmlAccessType;
16
+import javax.xml.bind.annotation.XmlAccessorType;
17
+import javax.xml.bind.annotation.XmlElement;
18
+import javax.xml.bind.annotation.XmlElementRef;
19
+import javax.xml.bind.annotation.XmlElementRefs;
20
+import javax.xml.bind.annotation.XmlMixed;
21
+import javax.xml.bind.annotation.XmlRootElement;
22
+import javax.xml.bind.annotation.XmlType;
23
+
24
+
25
+/**
26
+ * &lt;p&gt;Clase Java para anonymous complex type.
27
+ * 
28
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
29
+ * 
30
+ * &lt;pre&gt;
31
+ * &amp;lt;complexType&amp;gt;
32
+ *   &amp;lt;complexContent&amp;gt;
33
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
34
+ *       &amp;lt;sequence&amp;gt;
35
+ *         &amp;lt;element name="SignonRq"&amp;gt;
36
+ *           &amp;lt;complexType&amp;gt;
37
+ *             &amp;lt;complexContent&amp;gt;
38
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
39
+ *                 &amp;lt;sequence&amp;gt;
40
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
41
+ *                 &amp;lt;/sequence&amp;gt;
42
+ *               &amp;lt;/restriction&amp;gt;
43
+ *             &amp;lt;/complexContent&amp;gt;
44
+ *           &amp;lt;/complexType&amp;gt;
45
+ *         &amp;lt;/element&amp;gt;
46
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
47
+ *           &amp;lt;complexType&amp;gt;
48
+ *             &amp;lt;complexContent&amp;gt;
49
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
50
+ *                 &amp;lt;sequence&amp;gt;
51
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
52
+ *                     &amp;lt;complexType&amp;gt;
53
+ *                       &amp;lt;complexContent&amp;gt;
54
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
55
+ *                           &amp;lt;sequence&amp;gt;
56
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
57
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
58
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
59
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
60
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
61
+ *                           &amp;lt;/sequence&amp;gt;
62
+ *                         &amp;lt;/restriction&amp;gt;
63
+ *                       &amp;lt;/complexContent&amp;gt;
64
+ *                     &amp;lt;/complexType&amp;gt;
65
+ *                   &amp;lt;/element&amp;gt;
66
+ *                 &amp;lt;/sequence&amp;gt;
67
+ *               &amp;lt;/restriction&amp;gt;
68
+ *             &amp;lt;/complexContent&amp;gt;
69
+ *           &amp;lt;/complexType&amp;gt;
70
+ *         &amp;lt;/element&amp;gt;
71
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
72
+ *           &amp;lt;complexType&amp;gt;
73
+ *             &amp;lt;complexContent&amp;gt;
74
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
75
+ *                 &amp;lt;sequence&amp;gt;
76
+ *                   &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
77
+ *                   &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
78
+ *                   &amp;lt;element name="gnsContrasena" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
79
+ *                   &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
80
+ *                   &amp;lt;element name="gnsIDSupervisor" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
81
+ *                 &amp;lt;/sequence&amp;gt;
82
+ *               &amp;lt;/restriction&amp;gt;
83
+ *             &amp;lt;/complexContent&amp;gt;
84
+ *           &amp;lt;/complexType&amp;gt;
85
+ *         &amp;lt;/element&amp;gt;
86
+ *       &amp;lt;/sequence&amp;gt;
87
+ *     &amp;lt;/restriction&amp;gt;
88
+ *   &amp;lt;/complexContent&amp;gt;
89
+ * &amp;lt;/complexType&amp;gt;
90
+ * &lt;/pre&gt;
91
+ * 
92
+ * 
93
+ */
94
+@XmlAccessorType(XmlAccessType.FIELD)
95
+@XmlType(name = "", propOrder = {
96
+    "signonRq",
97
+    "baseSvcRq",
98
+    "bankSvcRq"
99
+})
100
+@XmlRootElement(name = "Genesis")
101
+public class UpdateUserRequest {
102
+
103
+    @XmlElement(name = "SignonRq", required = true)
104
+    protected UpdateUserRequest.SignonRq signonRq;
105
+    @XmlElement(name = "BaseSvcRq", required = true)
106
+    protected UpdateUserRequest.BaseSvcRq baseSvcRq;
107
+    @XmlElement(name = "BankSvcRq", required = true)
108
+    protected UpdateUserRequest.BankSvcRq bankSvcRq;
109
+
110
+    /**
111
+     * Obtiene el valor de la propiedad signonRq.
112
+     * 
113
+     * @return
114
+     *     possible object is
115
+     *     {@link Genesis.SignonRq }
116
+     *     
117
+     */
118
+    public UpdateUserRequest.SignonRq getSignonRq() {
119
+        return signonRq;
120
+    }
121
+
122
+    /**
123
+     * Define el valor de la propiedad signonRq.
124
+     * 
125
+     * @param value
126
+     *     allowed object is
127
+     *     {@link Genesis.SignonRq }
128
+     *     
129
+     */
130
+    public void setSignonRq(UpdateUserRequest.SignonRq value) {
131
+        this.signonRq = value;
132
+    }
133
+
134
+    /**
135
+     * Obtiene el valor de la propiedad baseSvcRq.
136
+     * 
137
+     * @return
138
+     *     possible object is
139
+     *     {@link Genesis.BaseSvcRq }
140
+     *     
141
+     */
142
+    public UpdateUserRequest.BaseSvcRq getBaseSvcRq() {
143
+        return baseSvcRq;
144
+    }
145
+
146
+    /**
147
+     * Define el valor de la propiedad baseSvcRq.
148
+     * 
149
+     * @param value
150
+     *     allowed object is
151
+     *     {@link Genesis.BaseSvcRq }
152
+     *     
153
+     */
154
+    public void setBaseSvcRq(UpdateUserRequest.BaseSvcRq value) {
155
+        this.baseSvcRq = value;
156
+    }
157
+
158
+    /**
159
+     * Obtiene el valor de la propiedad bankSvcRq.
160
+     * 
161
+     * @return
162
+     *     possible object is
163
+     *     {@link Genesis.BankSvcRq }
164
+     *     
165
+     */
166
+    public UpdateUserRequest.BankSvcRq getBankSvcRq() {
167
+        return bankSvcRq;
168
+    }
169
+
170
+    /**
171
+     * Define el valor de la propiedad bankSvcRq.
172
+     * 
173
+     * @param value
174
+     *     allowed object is
175
+     *     {@link Genesis.BankSvcRq }
176
+     *     
177
+     */
178
+    public void setBankSvcRq(UpdateUserRequest.BankSvcRq value) {
179
+        this.bankSvcRq = value;
180
+    }
181
+
182
+
183
+    /**
184
+     * &lt;p&gt;Clase Java para anonymous complex type.
185
+     * 
186
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
187
+     * 
188
+     * &lt;pre&gt;
189
+     * &amp;lt;complexType&amp;gt;
190
+     *   &amp;lt;complexContent&amp;gt;
191
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
192
+     *       &amp;lt;sequence&amp;gt;
193
+     *         &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
194
+     *         &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
195
+     *         &amp;lt;element name="gnsContrasena" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
196
+     *         &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
197
+     *         &amp;lt;element name="gnsIDSupervisor" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
198
+     *       &amp;lt;/sequence&amp;gt;
199
+     *     &amp;lt;/restriction&amp;gt;
200
+     *   &amp;lt;/complexContent&amp;gt;
201
+     * &amp;lt;/complexType&amp;gt;
202
+     * &lt;/pre&gt;
203
+     * 
204
+     * 
205
+     */
206
+    @XmlAccessorType(XmlAccessType.FIELD)
207
+    @XmlType(name = "", propOrder = {
208
+        "content"
209
+    })
210
+    public static class BankSvcRq {
211
+
212
+        @XmlElementRefs({
213
+            @XmlElementRef(name = "gnsIDUsuario", type = JAXBElement.class),
214
+            @XmlElementRef(name = "gnsIDRol", type = JAXBElement.class),
215
+            @XmlElementRef(name = "gnsContrasena", type = JAXBElement.class),
216
+            @XmlElementRef(name = "gnsCodigoSucursal", type = JAXBElement.class),
217
+            @XmlElementRef(name = "gnsIDSupervisor", type = JAXBElement.class)
218
+        })
219
+        @XmlMixed
220
+        protected List<Serializable> content;
221
+
222
+        /**
223
+         * Gets the value of the content property.
224
+         * 
225
+         * &lt;p&gt;
226
+         * This accessor method returns a reference to the live list,
227
+         * not a snapshot. Therefore any modification you make to the
228
+         * returned list will be present inside the JAXB object.
229
+         * This is why there is not a &lt;CODE&gt;set&lt;/CODE&gt; method for the content property.
230
+         * 
231
+         * &lt;p&gt;
232
+         * For example, to add a new item, do as follows:
233
+         * &lt;pre&gt;
234
+         *    getContent().add(newItem);
235
+         * &lt;/pre&gt;
236
+         * 
237
+         * 
238
+         * &lt;p&gt;
239
+         * Objects of the following type(s) are allowed in the list
240
+         * {@link JAXBElement }{@code <}{@link Long }{@code >}
241
+         * {@link JAXBElement }{@code <}{@link Long }{@code >}
242
+         * {@link JAXBElement }{@code <}{@link String }{@code >}
243
+         * {@link JAXBElement }{@code <}{@link Long }{@code >}
244
+         * {@link JAXBElement }{@code <}{@link Long }{@code >}
245
+         * {@link String }
246
+         * 
247
+         * 
248
+         */
249
+        public List<Serializable> getContent() {
250
+            if (content == null) {
251
+                content = new ArrayList<Serializable>();
252
+            }
253
+            return this.content;
254
+        }
255
+
256
+    }
257
+
258
+
259
+    /**
260
+     * &lt;p&gt;Clase Java para anonymous complex type.
261
+     * 
262
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
263
+     * 
264
+     * &lt;pre&gt;
265
+     * &amp;lt;complexType&amp;gt;
266
+     *   &amp;lt;complexContent&amp;gt;
267
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
268
+     *       &amp;lt;sequence&amp;gt;
269
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
270
+     *           &amp;lt;complexType&amp;gt;
271
+     *             &amp;lt;complexContent&amp;gt;
272
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
273
+     *                 &amp;lt;sequence&amp;gt;
274
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
275
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
276
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
277
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
278
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
279
+     *                 &amp;lt;/sequence&amp;gt;
280
+     *               &amp;lt;/restriction&amp;gt;
281
+     *             &amp;lt;/complexContent&amp;gt;
282
+     *           &amp;lt;/complexType&amp;gt;
283
+     *         &amp;lt;/element&amp;gt;
284
+     *       &amp;lt;/sequence&amp;gt;
285
+     *     &amp;lt;/restriction&amp;gt;
286
+     *   &amp;lt;/complexContent&amp;gt;
287
+     * &amp;lt;/complexType&amp;gt;
288
+     * &lt;/pre&gt;
289
+     * 
290
+     * 
291
+     */
292
+    @XmlAccessorType(XmlAccessType.FIELD)
293
+    @XmlType(name = "", propOrder = {
294
+        "msgRqHdr"
295
+    })
296
+    public static class BaseSvcRq {
297
+
298
+        @XmlElement(name = "MsgRqHdr", required = true)
299
+        protected UpdateUserRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
300
+
301
+        /**
302
+         * Obtiene el valor de la propiedad msgRqHdr.
303
+         * 
304
+         * @return
305
+         *     possible object is
306
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
307
+         *     
308
+         */
309
+        public UpdateUserRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
310
+            return msgRqHdr;
311
+        }
312
+
313
+        /**
314
+         * Define el valor de la propiedad msgRqHdr.
315
+         * 
316
+         * @param value
317
+         *     allowed object is
318
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
319
+         *     
320
+         */
321
+        public void setMsgRqHdr(UpdateUserRequest.BaseSvcRq.MsgRqHdr value) {
322
+            this.msgRqHdr = value;
323
+        }
324
+
325
+
326
+        /**
327
+         * &lt;p&gt;Clase Java para anonymous complex type.
328
+         * 
329
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
330
+         * 
331
+         * &lt;pre&gt;
332
+         * &amp;lt;complexType&amp;gt;
333
+         *   &amp;lt;complexContent&amp;gt;
334
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
335
+         *       &amp;lt;sequence&amp;gt;
336
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
337
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
338
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
339
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
340
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
341
+         *       &amp;lt;/sequence&amp;gt;
342
+         *     &amp;lt;/restriction&amp;gt;
343
+         *   &amp;lt;/complexContent&amp;gt;
344
+         * &amp;lt;/complexType&amp;gt;
345
+         * &lt;/pre&gt;
346
+         * 
347
+         * 
348
+         */
349
+        @XmlAccessorType(XmlAccessType.FIELD)
350
+        @XmlType(name = "", propOrder = {
351
+            "instance",
352
+            "bankId",
353
+            "originatorName",
354
+            "requestCode",
355
+            "requestName"
356
+        })
357
+        public static class MsgRqHdr {
358
+
359
+            @XmlElement(name = "Instance", required = true)
360
+            protected String instance;
361
+            @XmlElement(name = "BankId")
362
+            protected short bankId;
363
+            @XmlElement(name = "OriginatorName", required = true)
364
+            protected String originatorName;
365
+            @XmlElement(name = "RequestCode")
366
+            protected short requestCode;
367
+            @XmlElement(name = "RequestName", required = true)
368
+            protected String requestName;
369
+
370
+            /**
371
+             * Obtiene el valor de la propiedad instance.
372
+             * 
373
+             * @return
374
+             *     possible object is
375
+             *     {@link String }
376
+             *     
377
+             */
378
+            public String getInstance() {
379
+                return instance;
380
+            }
381
+
382
+            /**
383
+             * Define el valor de la propiedad instance.
384
+             * 
385
+             * @param value
386
+             *     allowed object is
387
+             *     {@link String }
388
+             *     
389
+             */
390
+            public void setInstance(String value) {
391
+                this.instance = value;
392
+            }
393
+
394
+            /**
395
+             * Obtiene el valor de la propiedad bankId.
396
+             * 
397
+             */
398
+            public short getBankId() {
399
+                return bankId;
400
+            }
401
+
402
+            /**
403
+             * Define el valor de la propiedad bankId.
404
+             * 
405
+             */
406
+            public void setBankId(short value) {
407
+                this.bankId = value;
408
+            }
409
+
410
+            /**
411
+             * Obtiene el valor de la propiedad originatorName.
412
+             * 
413
+             * @return
414
+             *     possible object is
415
+             *     {@link String }
416
+             *     
417
+             */
418
+            public String getOriginatorName() {
419
+                return originatorName;
420
+            }
421
+
422
+            /**
423
+             * Define el valor de la propiedad originatorName.
424
+             * 
425
+             * @param value
426
+             *     allowed object is
427
+             *     {@link String }
428
+             *     
429
+             */
430
+            public void setOriginatorName(String value) {
431
+                this.originatorName = value;
432
+            }
433
+
434
+            /**
435
+             * Obtiene el valor de la propiedad requestCode.
436
+             * 
437
+             */
438
+            public short getRequestCode() {
439
+                return requestCode;
440
+            }
441
+
442
+            /**
443
+             * Define el valor de la propiedad requestCode.
444
+             * 
445
+             */
446
+            public void setRequestCode(short value) {
447
+                this.requestCode = value;
448
+            }
449
+
450
+            /**
451
+             * Obtiene el valor de la propiedad requestName.
452
+             * 
453
+             * @return
454
+             *     possible object is
455
+             *     {@link String }
456
+             *     
457
+             */
458
+            public String getRequestName() {
459
+                return requestName;
460
+            }
461
+
462
+            /**
463
+             * Define el valor de la propiedad requestName.
464
+             * 
465
+             * @param value
466
+             *     allowed object is
467
+             *     {@link String }
468
+             *     
469
+             */
470
+            public void setRequestName(String value) {
471
+                this.requestName = value;
472
+            }
473
+
474
+        }
475
+
476
+    }
477
+
478
+
479
+    /**
480
+     * &lt;p&gt;Clase Java para anonymous complex type.
481
+     * 
482
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
483
+     * 
484
+     * &lt;pre&gt;
485
+     * &amp;lt;complexType&amp;gt;
486
+     *   &amp;lt;complexContent&amp;gt;
487
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
488
+     *       &amp;lt;sequence&amp;gt;
489
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
490
+     *       &amp;lt;/sequence&amp;gt;
491
+     *     &amp;lt;/restriction&amp;gt;
492
+     *   &amp;lt;/complexContent&amp;gt;
493
+     * &amp;lt;/complexType&amp;gt;
494
+     * &lt;/pre&gt;
495
+     * 
496
+     * 
497
+     */
498
+    @XmlAccessorType(XmlAccessType.FIELD)
499
+    @XmlType(name = "", propOrder = {
500
+        "sessionLoginId"
501
+    })
502
+    public static class SignonRq {
503
+
504
+        @XmlElement(name = "SessionLoginId", required = true)
505
+        protected String sessionLoginId;
506
+
507
+        /**
508
+         * Obtiene el valor de la propiedad sessionLoginId.
509
+         * 
510
+         * @return
511
+         *     possible object is
512
+         *     {@link String }
513
+         *     
514
+         */
515
+        public String getSessionLoginId() {
516
+            return sessionLoginId;
517
+        }
518
+
519
+        /**
520
+         * Define el valor de la propiedad sessionLoginId.
521
+         * 
522
+         * @param value
523
+         *     allowed object is
524
+         *     {@link String }
525
+         *     
526
+         */
527
+        public void setSessionLoginId(String value) {
528
+            this.sessionLoginId = value;
529
+        }
530
+
531
+    }
532
+
533
+}

+ 521 - 0
src/GenesisRequest/UserBlockRequest.java 查看文件

@@ -0,0 +1,521 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:29:52 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_UserBlockRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
65
+ *           &amp;lt;complexType&amp;gt;
66
+ *             &amp;lt;complexContent&amp;gt;
67
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                 &amp;lt;sequence&amp;gt;
69
+ *                   &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                   &amp;lt;element name="gnsBloqueado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
71
+ *                 &amp;lt;/sequence&amp;gt;
72
+ *               &amp;lt;/restriction&amp;gt;
73
+ *             &amp;lt;/complexContent&amp;gt;
74
+ *           &amp;lt;/complexType&amp;gt;
75
+ *         &amp;lt;/element&amp;gt;
76
+ *       &amp;lt;/sequence&amp;gt;
77
+ *     &amp;lt;/restriction&amp;gt;
78
+ *   &amp;lt;/complexContent&amp;gt;
79
+ * &amp;lt;/complexType&amp;gt;
80
+ * &lt;/pre&gt;
81
+ * 
82
+ * 
83
+ */
84
+@XmlAccessorType(XmlAccessType.FIELD)
85
+@XmlType(name = "", propOrder = {
86
+    "signonRq",
87
+    "baseSvcRq",
88
+    "bankSvcRq"
89
+})
90
+@XmlRootElement(name = "Genesis")
91
+public class UserBlockRequest {
92
+
93
+    @XmlElement(name = "SignonRq", required = true)
94
+    protected UserBlockRequest.SignonRq signonRq;
95
+    @XmlElement(name = "BaseSvcRq", required = true)
96
+    protected UserBlockRequest.BaseSvcRq baseSvcRq;
97
+    @XmlElement(name = "BankSvcRq", required = true)
98
+    protected UserBlockRequest.BankSvcRq bankSvcRq;
99
+
100
+    /**
101
+     * Obtiene el valor de la propiedad signonRq.
102
+     * 
103
+     * @return
104
+     *     possible object is
105
+     *     {@link Genesis.SignonRq }
106
+     *     
107
+     */
108
+    public UserBlockRequest.SignonRq getSignonRq() {
109
+        return signonRq;
110
+    }
111
+
112
+    /**
113
+     * Define el valor de la propiedad signonRq.
114
+     * 
115
+     * @param value
116
+     *     allowed object is
117
+     *     {@link Genesis.SignonRq }
118
+     *     
119
+     */
120
+    public void setSignonRq(UserBlockRequest.SignonRq value) {
121
+        this.signonRq = value;
122
+    }
123
+
124
+    /**
125
+     * Obtiene el valor de la propiedad baseSvcRq.
126
+     * 
127
+     * @return
128
+     *     possible object is
129
+     *     {@link Genesis.BaseSvcRq }
130
+     *     
131
+     */
132
+    public UserBlockRequest.BaseSvcRq getBaseSvcRq() {
133
+        return baseSvcRq;
134
+    }
135
+
136
+    /**
137
+     * Define el valor de la propiedad baseSvcRq.
138
+     * 
139
+     * @param value
140
+     *     allowed object is
141
+     *     {@link Genesis.BaseSvcRq }
142
+     *     
143
+     */
144
+    public void setBaseSvcRq(UserBlockRequest.BaseSvcRq value) {
145
+        this.baseSvcRq = value;
146
+    }
147
+
148
+    /**
149
+     * Obtiene el valor de la propiedad bankSvcRq.
150
+     * 
151
+     * @return
152
+     *     possible object is
153
+     *     {@link Genesis.BankSvcRq }
154
+     *     
155
+     */
156
+    public UserBlockRequest.BankSvcRq getBankSvcRq() {
157
+        return bankSvcRq;
158
+    }
159
+
160
+    /**
161
+     * Define el valor de la propiedad bankSvcRq.
162
+     * 
163
+     * @param value
164
+     *     allowed object is
165
+     *     {@link Genesis.BankSvcRq }
166
+     *     
167
+     */
168
+    public void setBankSvcRq(UserBlockRequest.BankSvcRq value) {
169
+        this.bankSvcRq = value;
170
+    }
171
+
172
+
173
+    /**
174
+     * &lt;p&gt;Clase Java para anonymous complex type.
175
+     * 
176
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
177
+     * 
178
+     * &lt;pre&gt;
179
+     * &amp;lt;complexType&amp;gt;
180
+     *   &amp;lt;complexContent&amp;gt;
181
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
182
+     *       &amp;lt;sequence&amp;gt;
183
+     *         &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
184
+     *         &amp;lt;element name="gnsBloqueado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
185
+     *       &amp;lt;/sequence&amp;gt;
186
+     *     &amp;lt;/restriction&amp;gt;
187
+     *   &amp;lt;/complexContent&amp;gt;
188
+     * &amp;lt;/complexType&amp;gt;
189
+     * &lt;/pre&gt;
190
+     * 
191
+     * 
192
+     */
193
+    @XmlAccessorType(XmlAccessType.FIELD)
194
+    @XmlType(name = "", propOrder = {
195
+        "gnsIDUsuario",
196
+        "gnsBloqueado"
197
+    })
198
+    public static class BankSvcRq {
199
+
200
+        protected long gnsIDUsuario;
201
+        @XmlElement(required = true)
202
+        protected String gnsBloqueado;
203
+
204
+        /**
205
+         * Obtiene el valor de la propiedad gnsIDUsuario.
206
+         * 
207
+         */
208
+        public long getGnsIDUsuario() {
209
+            return gnsIDUsuario;
210
+        }
211
+
212
+        /**
213
+         * Define el valor de la propiedad gnsIDUsuario.
214
+         * 
215
+         */
216
+        public void setGnsIDUsuario(long value) {
217
+            this.gnsIDUsuario = value;
218
+        }
219
+
220
+        /**
221
+         * Obtiene el valor de la propiedad gnsBloqueado.
222
+         * 
223
+         * @return
224
+         *     possible object is
225
+         *     {@link String }
226
+         *     
227
+         */
228
+        public String getGnsBloqueado() {
229
+            return gnsBloqueado;
230
+        }
231
+
232
+        /**
233
+         * Define el valor de la propiedad gnsBloqueado.
234
+         * 
235
+         * @param value
236
+         *     allowed object is
237
+         *     {@link String }
238
+         *     
239
+         */
240
+        public void setGnsBloqueado(String value) {
241
+            this.gnsBloqueado = value;
242
+        }
243
+
244
+    }
245
+
246
+
247
+    /**
248
+     * &lt;p&gt;Clase Java para anonymous complex type.
249
+     * 
250
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
251
+     * 
252
+     * &lt;pre&gt;
253
+     * &amp;lt;complexType&amp;gt;
254
+     *   &amp;lt;complexContent&amp;gt;
255
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
256
+     *       &amp;lt;sequence&amp;gt;
257
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
258
+     *           &amp;lt;complexType&amp;gt;
259
+     *             &amp;lt;complexContent&amp;gt;
260
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
261
+     *                 &amp;lt;sequence&amp;gt;
262
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
263
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
264
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
265
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
266
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
267
+     *                 &amp;lt;/sequence&amp;gt;
268
+     *               &amp;lt;/restriction&amp;gt;
269
+     *             &amp;lt;/complexContent&amp;gt;
270
+     *           &amp;lt;/complexType&amp;gt;
271
+     *         &amp;lt;/element&amp;gt;
272
+     *       &amp;lt;/sequence&amp;gt;
273
+     *     &amp;lt;/restriction&amp;gt;
274
+     *   &amp;lt;/complexContent&amp;gt;
275
+     * &amp;lt;/complexType&amp;gt;
276
+     * &lt;/pre&gt;
277
+     * 
278
+     * 
279
+     */
280
+    @XmlAccessorType(XmlAccessType.FIELD)
281
+    @XmlType(name = "", propOrder = {
282
+        "msgRqHdr"
283
+    })
284
+    public static class BaseSvcRq {
285
+
286
+        @XmlElement(name = "MsgRqHdr", required = true)
287
+        protected UserBlockRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
288
+
289
+        /**
290
+         * Obtiene el valor de la propiedad msgRqHdr.
291
+         * 
292
+         * @return
293
+         *     possible object is
294
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
295
+         *     
296
+         */
297
+        public UserBlockRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
298
+            return msgRqHdr;
299
+        }
300
+
301
+        /**
302
+         * Define el valor de la propiedad msgRqHdr.
303
+         * 
304
+         * @param value
305
+         *     allowed object is
306
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
307
+         *     
308
+         */
309
+        public void setMsgRqHdr(UserBlockRequest.BaseSvcRq.MsgRqHdr value) {
310
+            this.msgRqHdr = value;
311
+        }
312
+
313
+
314
+        /**
315
+         * &lt;p&gt;Clase Java para anonymous complex type.
316
+         * 
317
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
318
+         * 
319
+         * &lt;pre&gt;
320
+         * &amp;lt;complexType&amp;gt;
321
+         *   &amp;lt;complexContent&amp;gt;
322
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
323
+         *       &amp;lt;sequence&amp;gt;
324
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
325
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
326
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
327
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
328
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
329
+         *       &amp;lt;/sequence&amp;gt;
330
+         *     &amp;lt;/restriction&amp;gt;
331
+         *   &amp;lt;/complexContent&amp;gt;
332
+         * &amp;lt;/complexType&amp;gt;
333
+         * &lt;/pre&gt;
334
+         * 
335
+         * 
336
+         */
337
+        @XmlAccessorType(XmlAccessType.FIELD)
338
+        @XmlType(name = "", propOrder = {
339
+            "instance",
340
+            "bankId",
341
+            "originatorName",
342
+            "requestCode",
343
+            "requestName"
344
+        })
345
+        public static class MsgRqHdr {
346
+
347
+            @XmlElement(name = "Instance", required = true)
348
+            protected String instance;
349
+            @XmlElement(name = "BankId")
350
+            protected short bankId;
351
+            @XmlElement(name = "OriginatorName", required = true)
352
+            protected String originatorName;
353
+            @XmlElement(name = "RequestCode")
354
+            protected short requestCode;
355
+            @XmlElement(name = "RequestName", required = true)
356
+            protected String requestName;
357
+
358
+            /**
359
+             * Obtiene el valor de la propiedad instance.
360
+             * 
361
+             * @return
362
+             *     possible object is
363
+             *     {@link String }
364
+             *     
365
+             */
366
+            public String getInstance() {
367
+                return instance;
368
+            }
369
+
370
+            /**
371
+             * Define el valor de la propiedad instance.
372
+             * 
373
+             * @param value
374
+             *     allowed object is
375
+             *     {@link String }
376
+             *     
377
+             */
378
+            public void setInstance(String value) {
379
+                this.instance = value;
380
+            }
381
+
382
+            /**
383
+             * Obtiene el valor de la propiedad bankId.
384
+             * 
385
+             */
386
+            public short getBankId() {
387
+                return bankId;
388
+            }
389
+
390
+            /**
391
+             * Define el valor de la propiedad bankId.
392
+             * 
393
+             */
394
+            public void setBankId(short value) {
395
+                this.bankId = value;
396
+            }
397
+
398
+            /**
399
+             * Obtiene el valor de la propiedad originatorName.
400
+             * 
401
+             * @return
402
+             *     possible object is
403
+             *     {@link String }
404
+             *     
405
+             */
406
+            public String getOriginatorName() {
407
+                return originatorName;
408
+            }
409
+
410
+            /**
411
+             * Define el valor de la propiedad originatorName.
412
+             * 
413
+             * @param value
414
+             *     allowed object is
415
+             *     {@link String }
416
+             *     
417
+             */
418
+            public void setOriginatorName(String value) {
419
+                this.originatorName = value;
420
+            }
421
+
422
+            /**
423
+             * Obtiene el valor de la propiedad requestCode.
424
+             * 
425
+             */
426
+            public short getRequestCode() {
427
+                return requestCode;
428
+            }
429
+
430
+            /**
431
+             * Define el valor de la propiedad requestCode.
432
+             * 
433
+             */
434
+            public void setRequestCode(short value) {
435
+                this.requestCode = value;
436
+            }
437
+
438
+            /**
439
+             * Obtiene el valor de la propiedad requestName.
440
+             * 
441
+             * @return
442
+             *     possible object is
443
+             *     {@link String }
444
+             *     
445
+             */
446
+            public String getRequestName() {
447
+                return requestName;
448
+            }
449
+
450
+            /**
451
+             * Define el valor de la propiedad requestName.
452
+             * 
453
+             * @param value
454
+             *     allowed object is
455
+             *     {@link String }
456
+             *     
457
+             */
458
+            public void setRequestName(String value) {
459
+                this.requestName = value;
460
+            }
461
+
462
+        }
463
+
464
+    }
465
+
466
+
467
+    /**
468
+     * &lt;p&gt;Clase Java para anonymous complex type.
469
+     * 
470
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
471
+     * 
472
+     * &lt;pre&gt;
473
+     * &amp;lt;complexType&amp;gt;
474
+     *   &amp;lt;complexContent&amp;gt;
475
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
476
+     *       &amp;lt;sequence&amp;gt;
477
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
478
+     *       &amp;lt;/sequence&amp;gt;
479
+     *     &amp;lt;/restriction&amp;gt;
480
+     *   &amp;lt;/complexContent&amp;gt;
481
+     * &amp;lt;/complexType&amp;gt;
482
+     * &lt;/pre&gt;
483
+     * 
484
+     * 
485
+     */
486
+    @XmlAccessorType(XmlAccessType.FIELD)
487
+    @XmlType(name = "", propOrder = {
488
+        "sessionLoginId"
489
+    })
490
+    public static class SignonRq {
491
+
492
+        @XmlElement(name = "SessionLoginId", required = true)
493
+        protected String sessionLoginId;
494
+
495
+        /**
496
+         * Obtiene el valor de la propiedad sessionLoginId.
497
+         * 
498
+         * @return
499
+         *     possible object is
500
+         *     {@link String }
501
+         *     
502
+         */
503
+        public String getSessionLoginId() {
504
+            return sessionLoginId;
505
+        }
506
+
507
+        /**
508
+         * Define el valor de la propiedad sessionLoginId.
509
+         * 
510
+         * @param value
511
+         *     allowed object is
512
+         *     {@link String }
513
+         *     
514
+         */
515
+        public void setSessionLoginId(String value) {
516
+            this.sessionLoginId = value;
517
+        }
518
+
519
+    }
520
+
521
+}

+ 512 - 0
src/GenesisRequest/UserListRequest.java 查看文件

@@ -0,0 +1,512 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:32:50 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_UserListRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
65
+ *           &amp;lt;complexType&amp;gt;
66
+ *             &amp;lt;complexContent&amp;gt;
67
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                 &amp;lt;sequence&amp;gt;
69
+ *                   &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                   &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
71
+ *                 &amp;lt;/sequence&amp;gt;
72
+ *               &amp;lt;/restriction&amp;gt;
73
+ *             &amp;lt;/complexContent&amp;gt;
74
+ *           &amp;lt;/complexType&amp;gt;
75
+ *         &amp;lt;/element&amp;gt;
76
+ *       &amp;lt;/sequence&amp;gt;
77
+ *     &amp;lt;/restriction&amp;gt;
78
+ *   &amp;lt;/complexContent&amp;gt;
79
+ * &amp;lt;/complexType&amp;gt;
80
+ * &lt;/pre&gt;
81
+ * 
82
+ * 
83
+ */
84
+@XmlAccessorType(XmlAccessType.FIELD)
85
+@XmlType(name = "", propOrder = {
86
+    "signonRq",
87
+    "baseSvcRq",
88
+    "bankSvcRq"
89
+})
90
+@XmlRootElement(name = "Genesis")
91
+public class UserListRequest {
92
+
93
+    @XmlElement(name = "SignonRq", required = true)
94
+    protected UserListRequest.SignonRq signonRq;
95
+    @XmlElement(name = "BaseSvcRq", required = true)
96
+    protected UserListRequest.BaseSvcRq baseSvcRq;
97
+    @XmlElement(name = "BankSvcRq", required = true)
98
+    protected UserListRequest.BankSvcRq bankSvcRq;
99
+
100
+    /**
101
+     * Obtiene el valor de la propiedad signonRq.
102
+     * 
103
+     * @return
104
+     *     possible object is
105
+     *     {@link Genesis.SignonRq }
106
+     *     
107
+     */
108
+    public UserListRequest.SignonRq getSignonRq() {
109
+        return signonRq;
110
+    }
111
+
112
+    /**
113
+     * Define el valor de la propiedad signonRq.
114
+     * 
115
+     * @param value
116
+     *     allowed object is
117
+     *     {@link Genesis.SignonRq }
118
+     *     
119
+     */
120
+    public void setSignonRq(UserListRequest.SignonRq value) {
121
+        this.signonRq = value;
122
+    }
123
+
124
+    /**
125
+     * Obtiene el valor de la propiedad baseSvcRq.
126
+     * 
127
+     * @return
128
+     *     possible object is
129
+     *     {@link Genesis.BaseSvcRq }
130
+     *     
131
+     */
132
+    public UserListRequest.BaseSvcRq getBaseSvcRq() {
133
+        return baseSvcRq;
134
+    }
135
+
136
+    /**
137
+     * Define el valor de la propiedad baseSvcRq.
138
+     * 
139
+     * @param value
140
+     *     allowed object is
141
+     *     {@link Genesis.BaseSvcRq }
142
+     *     
143
+     */
144
+    public void setBaseSvcRq(UserListRequest.BaseSvcRq value) {
145
+        this.baseSvcRq = value;
146
+    }
147
+
148
+    /**
149
+     * Obtiene el valor de la propiedad bankSvcRq.
150
+     * 
151
+     * @return
152
+     *     possible object is
153
+     *     {@link Genesis.BankSvcRq }
154
+     *     
155
+     */
156
+    public UserListRequest.BankSvcRq getBankSvcRq() {
157
+        return bankSvcRq;
158
+    }
159
+
160
+    /**
161
+     * Define el valor de la propiedad bankSvcRq.
162
+     * 
163
+     * @param value
164
+     *     allowed object is
165
+     *     {@link Genesis.BankSvcRq }
166
+     *     
167
+     */
168
+    public void setBankSvcRq(UserListRequest.BankSvcRq value) {
169
+        this.bankSvcRq = value;
170
+    }
171
+
172
+
173
+    /**
174
+     * &lt;p&gt;Clase Java para anonymous complex type.
175
+     * 
176
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
177
+     * 
178
+     * &lt;pre&gt;
179
+     * &amp;lt;complexType&amp;gt;
180
+     *   &amp;lt;complexContent&amp;gt;
181
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
182
+     *       &amp;lt;sequence&amp;gt;
183
+     *         &amp;lt;element name="gnsIDRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
184
+     *         &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
185
+     *       &amp;lt;/sequence&amp;gt;
186
+     *     &amp;lt;/restriction&amp;gt;
187
+     *   &amp;lt;/complexContent&amp;gt;
188
+     * &amp;lt;/complexType&amp;gt;
189
+     * &lt;/pre&gt;
190
+     * 
191
+     * 
192
+     */
193
+    @XmlAccessorType(XmlAccessType.FIELD)
194
+    @XmlType(name = "", propOrder = {
195
+        "gnsIDRol",
196
+        "gnsCodigoSucursal"
197
+    })
198
+    public static class BankSvcRq {
199
+
200
+        protected long gnsIDRol;
201
+        protected long gnsCodigoSucursal;
202
+
203
+        /**
204
+         * Obtiene el valor de la propiedad gnsIDRol.
205
+         * 
206
+         */
207
+        public long getGnsIDRol() {
208
+            return gnsIDRol;
209
+        }
210
+
211
+        /**
212
+         * Define el valor de la propiedad gnsIDRol.
213
+         * 
214
+         */
215
+        public void setGnsIDRol(long value) {
216
+            this.gnsIDRol = value;
217
+        }
218
+
219
+        /**
220
+         * Obtiene el valor de la propiedad gnsCodigoSucursal.
221
+         * 
222
+         */
223
+        public long getGnsCodigoSucursal() {
224
+            return gnsCodigoSucursal;
225
+        }
226
+
227
+        /**
228
+         * Define el valor de la propiedad gnsCodigoSucursal.
229
+         * 
230
+         */
231
+        public void setGnsCodigoSucursal(long value) {
232
+            this.gnsCodigoSucursal = value;
233
+        }
234
+
235
+    }
236
+
237
+
238
+    /**
239
+     * &lt;p&gt;Clase Java para anonymous complex type.
240
+     * 
241
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
242
+     * 
243
+     * &lt;pre&gt;
244
+     * &amp;lt;complexType&amp;gt;
245
+     *   &amp;lt;complexContent&amp;gt;
246
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
247
+     *       &amp;lt;sequence&amp;gt;
248
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
249
+     *           &amp;lt;complexType&amp;gt;
250
+     *             &amp;lt;complexContent&amp;gt;
251
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
252
+     *                 &amp;lt;sequence&amp;gt;
253
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
254
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
255
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
256
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
257
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
258
+     *                 &amp;lt;/sequence&amp;gt;
259
+     *               &amp;lt;/restriction&amp;gt;
260
+     *             &amp;lt;/complexContent&amp;gt;
261
+     *           &amp;lt;/complexType&amp;gt;
262
+     *         &amp;lt;/element&amp;gt;
263
+     *       &amp;lt;/sequence&amp;gt;
264
+     *     &amp;lt;/restriction&amp;gt;
265
+     *   &amp;lt;/complexContent&amp;gt;
266
+     * &amp;lt;/complexType&amp;gt;
267
+     * &lt;/pre&gt;
268
+     * 
269
+     * 
270
+     */
271
+    @XmlAccessorType(XmlAccessType.FIELD)
272
+    @XmlType(name = "", propOrder = {
273
+        "msgRqHdr"
274
+    })
275
+    public static class BaseSvcRq {
276
+
277
+        @XmlElement(name = "MsgRqHdr", required = true)
278
+        protected UserListRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
279
+
280
+        /**
281
+         * Obtiene el valor de la propiedad msgRqHdr.
282
+         * 
283
+         * @return
284
+         *     possible object is
285
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
286
+         *     
287
+         */
288
+        public UserListRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
289
+            return msgRqHdr;
290
+        }
291
+
292
+        /**
293
+         * Define el valor de la propiedad msgRqHdr.
294
+         * 
295
+         * @param value
296
+         *     allowed object is
297
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
298
+         *     
299
+         */
300
+        public void setMsgRqHdr(UserListRequest.BaseSvcRq.MsgRqHdr value) {
301
+            this.msgRqHdr = value;
302
+        }
303
+
304
+
305
+        /**
306
+         * &lt;p&gt;Clase Java para anonymous complex type.
307
+         * 
308
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
309
+         * 
310
+         * &lt;pre&gt;
311
+         * &amp;lt;complexType&amp;gt;
312
+         *   &amp;lt;complexContent&amp;gt;
313
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
314
+         *       &amp;lt;sequence&amp;gt;
315
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
316
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
317
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
318
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
319
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
320
+         *       &amp;lt;/sequence&amp;gt;
321
+         *     &amp;lt;/restriction&amp;gt;
322
+         *   &amp;lt;/complexContent&amp;gt;
323
+         * &amp;lt;/complexType&amp;gt;
324
+         * &lt;/pre&gt;
325
+         * 
326
+         * 
327
+         */
328
+        @XmlAccessorType(XmlAccessType.FIELD)
329
+        @XmlType(name = "", propOrder = {
330
+            "instance",
331
+            "bankId",
332
+            "originatorName",
333
+            "requestCode",
334
+            "requestName"
335
+        })
336
+        public static class MsgRqHdr {
337
+
338
+            @XmlElement(name = "Instance", required = true)
339
+            protected String instance;
340
+            @XmlElement(name = "BankId")
341
+            protected short bankId;
342
+            @XmlElement(name = "OriginatorName", required = true)
343
+            protected String originatorName;
344
+            @XmlElement(name = "RequestCode")
345
+            protected short requestCode;
346
+            @XmlElement(name = "RequestName", required = true)
347
+            protected String requestName;
348
+
349
+            /**
350
+             * Obtiene el valor de la propiedad instance.
351
+             * 
352
+             * @return
353
+             *     possible object is
354
+             *     {@link String }
355
+             *     
356
+             */
357
+            public String getInstance() {
358
+                return instance;
359
+            }
360
+
361
+            /**
362
+             * Define el valor de la propiedad instance.
363
+             * 
364
+             * @param value
365
+             *     allowed object is
366
+             *     {@link String }
367
+             *     
368
+             */
369
+            public void setInstance(String value) {
370
+                this.instance = value;
371
+            }
372
+
373
+            /**
374
+             * Obtiene el valor de la propiedad bankId.
375
+             * 
376
+             */
377
+            public short getBankId() {
378
+                return bankId;
379
+            }
380
+
381
+            /**
382
+             * Define el valor de la propiedad bankId.
383
+             * 
384
+             */
385
+            public void setBankId(short value) {
386
+                this.bankId = value;
387
+            }
388
+
389
+            /**
390
+             * Obtiene el valor de la propiedad originatorName.
391
+             * 
392
+             * @return
393
+             *     possible object is
394
+             *     {@link String }
395
+             *     
396
+             */
397
+            public String getOriginatorName() {
398
+                return originatorName;
399
+            }
400
+
401
+            /**
402
+             * Define el valor de la propiedad originatorName.
403
+             * 
404
+             * @param value
405
+             *     allowed object is
406
+             *     {@link String }
407
+             *     
408
+             */
409
+            public void setOriginatorName(String value) {
410
+                this.originatorName = value;
411
+            }
412
+
413
+            /**
414
+             * Obtiene el valor de la propiedad requestCode.
415
+             * 
416
+             */
417
+            public short getRequestCode() {
418
+                return requestCode;
419
+            }
420
+
421
+            /**
422
+             * Define el valor de la propiedad requestCode.
423
+             * 
424
+             */
425
+            public void setRequestCode(short value) {
426
+                this.requestCode = value;
427
+            }
428
+
429
+            /**
430
+             * Obtiene el valor de la propiedad requestName.
431
+             * 
432
+             * @return
433
+             *     possible object is
434
+             *     {@link String }
435
+             *     
436
+             */
437
+            public String getRequestName() {
438
+                return requestName;
439
+            }
440
+
441
+            /**
442
+             * Define el valor de la propiedad requestName.
443
+             * 
444
+             * @param value
445
+             *     allowed object is
446
+             *     {@link String }
447
+             *     
448
+             */
449
+            public void setRequestName(String value) {
450
+                this.requestName = value;
451
+            }
452
+
453
+        }
454
+
455
+    }
456
+
457
+
458
+    /**
459
+     * &lt;p&gt;Clase Java para anonymous complex type.
460
+     * 
461
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
462
+     * 
463
+     * &lt;pre&gt;
464
+     * &amp;lt;complexType&amp;gt;
465
+     *   &amp;lt;complexContent&amp;gt;
466
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
467
+     *       &amp;lt;sequence&amp;gt;
468
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
469
+     *       &amp;lt;/sequence&amp;gt;
470
+     *     &amp;lt;/restriction&amp;gt;
471
+     *   &amp;lt;/complexContent&amp;gt;
472
+     * &amp;lt;/complexType&amp;gt;
473
+     * &lt;/pre&gt;
474
+     * 
475
+     * 
476
+     */
477
+    @XmlAccessorType(XmlAccessType.FIELD)
478
+    @XmlType(name = "", propOrder = {
479
+        "sessionLoginId"
480
+    })
481
+    public static class SignonRq {
482
+
483
+        @XmlElement(name = "SessionLoginId", required = true)
484
+        protected String sessionLoginId;
485
+
486
+        /**
487
+         * Obtiene el valor de la propiedad sessionLoginId.
488
+         * 
489
+         * @return
490
+         *     possible object is
491
+         *     {@link String }
492
+         *     
493
+         */
494
+        public String getSessionLoginId() {
495
+            return sessionLoginId;
496
+        }
497
+
498
+        /**
499
+         * Define el valor de la propiedad sessionLoginId.
500
+         * 
501
+         * @param value
502
+         *     allowed object is
503
+         *     {@link String }
504
+         *     
505
+         */
506
+        public void setSessionLoginId(String value) {
507
+            this.sessionLoginId = value;
508
+        }
509
+
510
+    }
511
+
512
+}

+ 492 - 0
src/GenesisRequest/WorkstationByBranchListRequest.java 查看文件

@@ -0,0 +1,492 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:35:36 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_WorkstationByBranchListRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
65
+ *           &amp;lt;complexType&amp;gt;
66
+ *             &amp;lt;complexContent&amp;gt;
67
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                 &amp;lt;sequence&amp;gt;
69
+ *                   &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                 &amp;lt;/sequence&amp;gt;
71
+ *               &amp;lt;/restriction&amp;gt;
72
+ *             &amp;lt;/complexContent&amp;gt;
73
+ *           &amp;lt;/complexType&amp;gt;
74
+ *         &amp;lt;/element&amp;gt;
75
+ *       &amp;lt;/sequence&amp;gt;
76
+ *     &amp;lt;/restriction&amp;gt;
77
+ *   &amp;lt;/complexContent&amp;gt;
78
+ * &amp;lt;/complexType&amp;gt;
79
+ * &lt;/pre&gt;
80
+ * 
81
+ * 
82
+ */
83
+@XmlAccessorType(XmlAccessType.FIELD)
84
+@XmlType(name = "", propOrder = {
85
+    "signonRq",
86
+    "baseSvcRq",
87
+    "bankSvcRq"
88
+})
89
+@XmlRootElement(name = "Genesis")
90
+public class WorkstationByBranchListRequest {
91
+
92
+    @XmlElement(name = "SignonRq", required = true)
93
+    protected WorkstationByBranchListRequest.SignonRq signonRq;
94
+    @XmlElement(name = "BaseSvcRq", required = true)
95
+    protected WorkstationByBranchListRequest.BaseSvcRq baseSvcRq;
96
+    @XmlElement(name = "BankSvcRq", required = true)
97
+    protected WorkstationByBranchListRequest.BankSvcRq bankSvcRq;
98
+
99
+    /**
100
+     * Obtiene el valor de la propiedad signonRq.
101
+     * 
102
+     * @return
103
+     *     possible object is
104
+     *     {@link Genesis.SignonRq }
105
+     *     
106
+     */
107
+    public WorkstationByBranchListRequest.SignonRq getSignonRq() {
108
+        return signonRq;
109
+    }
110
+
111
+    /**
112
+     * Define el valor de la propiedad signonRq.
113
+     * 
114
+     * @param value
115
+     *     allowed object is
116
+     *     {@link Genesis.SignonRq }
117
+     *     
118
+     */
119
+    public void setSignonRq(WorkstationByBranchListRequest.SignonRq value) {
120
+        this.signonRq = value;
121
+    }
122
+
123
+    /**
124
+     * Obtiene el valor de la propiedad baseSvcRq.
125
+     * 
126
+     * @return
127
+     *     possible object is
128
+     *     {@link Genesis.BaseSvcRq }
129
+     *     
130
+     */
131
+    public WorkstationByBranchListRequest.BaseSvcRq getBaseSvcRq() {
132
+        return baseSvcRq;
133
+    }
134
+
135
+    /**
136
+     * Define el valor de la propiedad baseSvcRq.
137
+     * 
138
+     * @param value
139
+     *     allowed object is
140
+     *     {@link Genesis.BaseSvcRq }
141
+     *     
142
+     */
143
+    public void setBaseSvcRq(WorkstationByBranchListRequest.BaseSvcRq value) {
144
+        this.baseSvcRq = value;
145
+    }
146
+
147
+    /**
148
+     * Obtiene el valor de la propiedad bankSvcRq.
149
+     * 
150
+     * @return
151
+     *     possible object is
152
+     *     {@link Genesis.BankSvcRq }
153
+     *     
154
+     */
155
+    public WorkstationByBranchListRequest.BankSvcRq getBankSvcRq() {
156
+        return bankSvcRq;
157
+    }
158
+
159
+    /**
160
+     * Define el valor de la propiedad bankSvcRq.
161
+     * 
162
+     * @param value
163
+     *     allowed object is
164
+     *     {@link Genesis.BankSvcRq }
165
+     *     
166
+     */
167
+    public void setBankSvcRq(WorkstationByBranchListRequest.BankSvcRq value) {
168
+        this.bankSvcRq = value;
169
+    }
170
+
171
+
172
+    /**
173
+     * &lt;p&gt;Clase Java para anonymous complex type.
174
+     * 
175
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
176
+     * 
177
+     * &lt;pre&gt;
178
+     * &amp;lt;complexType&amp;gt;
179
+     *   &amp;lt;complexContent&amp;gt;
180
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
181
+     *       &amp;lt;sequence&amp;gt;
182
+     *         &amp;lt;element name="gnsCodigoSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
183
+     *       &amp;lt;/sequence&amp;gt;
184
+     *     &amp;lt;/restriction&amp;gt;
185
+     *   &amp;lt;/complexContent&amp;gt;
186
+     * &amp;lt;/complexType&amp;gt;
187
+     * &lt;/pre&gt;
188
+     * 
189
+     * 
190
+     */
191
+    @XmlAccessorType(XmlAccessType.FIELD)
192
+    @XmlType(name = "", propOrder = {
193
+        "gnsCodigoSucursal"
194
+    })
195
+    public static class BankSvcRq {
196
+
197
+        protected long gnsCodigoSucursal;
198
+
199
+        /**
200
+         * Obtiene el valor de la propiedad gnsCodigoSucursal.
201
+         * 
202
+         */
203
+        public long getGnsCodigoSucursal() {
204
+            return gnsCodigoSucursal;
205
+        }
206
+
207
+        /**
208
+         * Define el valor de la propiedad gnsCodigoSucursal.
209
+         * 
210
+         */
211
+        public void setGnsCodigoSucursal(long value) {
212
+            this.gnsCodigoSucursal = value;
213
+        }
214
+
215
+    }
216
+
217
+
218
+    /**
219
+     * &lt;p&gt;Clase Java para anonymous complex type.
220
+     * 
221
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
222
+     * 
223
+     * &lt;pre&gt;
224
+     * &amp;lt;complexType&amp;gt;
225
+     *   &amp;lt;complexContent&amp;gt;
226
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
227
+     *       &amp;lt;sequence&amp;gt;
228
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
229
+     *           &amp;lt;complexType&amp;gt;
230
+     *             &amp;lt;complexContent&amp;gt;
231
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
232
+     *                 &amp;lt;sequence&amp;gt;
233
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
234
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
235
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
236
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
237
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
238
+     *                 &amp;lt;/sequence&amp;gt;
239
+     *               &amp;lt;/restriction&amp;gt;
240
+     *             &amp;lt;/complexContent&amp;gt;
241
+     *           &amp;lt;/complexType&amp;gt;
242
+     *         &amp;lt;/element&amp;gt;
243
+     *       &amp;lt;/sequence&amp;gt;
244
+     *     &amp;lt;/restriction&amp;gt;
245
+     *   &amp;lt;/complexContent&amp;gt;
246
+     * &amp;lt;/complexType&amp;gt;
247
+     * &lt;/pre&gt;
248
+     * 
249
+     * 
250
+     */
251
+    @XmlAccessorType(XmlAccessType.FIELD)
252
+    @XmlType(name = "", propOrder = {
253
+        "msgRqHdr"
254
+    })
255
+    public static class BaseSvcRq {
256
+
257
+        @XmlElement(name = "MsgRqHdr", required = true)
258
+        protected WorkstationByBranchListRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
259
+
260
+        /**
261
+         * Obtiene el valor de la propiedad msgRqHdr.
262
+         * 
263
+         * @return
264
+         *     possible object is
265
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
266
+         *     
267
+         */
268
+        public WorkstationByBranchListRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
269
+            return msgRqHdr;
270
+        }
271
+
272
+        /**
273
+         * Define el valor de la propiedad msgRqHdr.
274
+         * 
275
+         * @param value
276
+         *     allowed object is
277
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
278
+         *     
279
+         */
280
+        public void setMsgRqHdr(WorkstationByBranchListRequest.BaseSvcRq.MsgRqHdr value) {
281
+            this.msgRqHdr = value;
282
+        }
283
+
284
+
285
+        /**
286
+         * &lt;p&gt;Clase Java para anonymous complex type.
287
+         * 
288
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
289
+         * 
290
+         * &lt;pre&gt;
291
+         * &amp;lt;complexType&amp;gt;
292
+         *   &amp;lt;complexContent&amp;gt;
293
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
294
+         *       &amp;lt;sequence&amp;gt;
295
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
296
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
297
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
298
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
299
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
300
+         *       &amp;lt;/sequence&amp;gt;
301
+         *     &amp;lt;/restriction&amp;gt;
302
+         *   &amp;lt;/complexContent&amp;gt;
303
+         * &amp;lt;/complexType&amp;gt;
304
+         * &lt;/pre&gt;
305
+         * 
306
+         * 
307
+         */
308
+        @XmlAccessorType(XmlAccessType.FIELD)
309
+        @XmlType(name = "", propOrder = {
310
+            "instance",
311
+            "bankId",
312
+            "originatorName",
313
+            "requestCode",
314
+            "requestName"
315
+        })
316
+        public static class MsgRqHdr {
317
+
318
+            @XmlElement(name = "Instance", required = true)
319
+            protected String instance;
320
+            @XmlElement(name = "BankId")
321
+            protected short bankId;
322
+            @XmlElement(name = "OriginatorName", required = true)
323
+            protected String originatorName;
324
+            @XmlElement(name = "RequestCode")
325
+            protected short requestCode;
326
+            @XmlElement(name = "RequestName", required = true)
327
+            protected String requestName;
328
+
329
+            /**
330
+             * Obtiene el valor de la propiedad instance.
331
+             * 
332
+             * @return
333
+             *     possible object is
334
+             *     {@link String }
335
+             *     
336
+             */
337
+            public String getInstance() {
338
+                return instance;
339
+            }
340
+
341
+            /**
342
+             * Define el valor de la propiedad instance.
343
+             * 
344
+             * @param value
345
+             *     allowed object is
346
+             *     {@link String }
347
+             *     
348
+             */
349
+            public void setInstance(String value) {
350
+                this.instance = value;
351
+            }
352
+
353
+            /**
354
+             * Obtiene el valor de la propiedad bankId.
355
+             * 
356
+             */
357
+            public short getBankId() {
358
+                return bankId;
359
+            }
360
+
361
+            /**
362
+             * Define el valor de la propiedad bankId.
363
+             * 
364
+             */
365
+            public void setBankId(short value) {
366
+                this.bankId = value;
367
+            }
368
+
369
+            /**
370
+             * Obtiene el valor de la propiedad originatorName.
371
+             * 
372
+             * @return
373
+             *     possible object is
374
+             *     {@link String }
375
+             *     
376
+             */
377
+            public String getOriginatorName() {
378
+                return originatorName;
379
+            }
380
+
381
+            /**
382
+             * Define el valor de la propiedad originatorName.
383
+             * 
384
+             * @param value
385
+             *     allowed object is
386
+             *     {@link String }
387
+             *     
388
+             */
389
+            public void setOriginatorName(String value) {
390
+                this.originatorName = value;
391
+            }
392
+
393
+            /**
394
+             * Obtiene el valor de la propiedad requestCode.
395
+             * 
396
+             */
397
+            public short getRequestCode() {
398
+                return requestCode;
399
+            }
400
+
401
+            /**
402
+             * Define el valor de la propiedad requestCode.
403
+             * 
404
+             */
405
+            public void setRequestCode(short value) {
406
+                this.requestCode = value;
407
+            }
408
+
409
+            /**
410
+             * Obtiene el valor de la propiedad requestName.
411
+             * 
412
+             * @return
413
+             *     possible object is
414
+             *     {@link String }
415
+             *     
416
+             */
417
+            public String getRequestName() {
418
+                return requestName;
419
+            }
420
+
421
+            /**
422
+             * Define el valor de la propiedad requestName.
423
+             * 
424
+             * @param value
425
+             *     allowed object is
426
+             *     {@link String }
427
+             *     
428
+             */
429
+            public void setRequestName(String value) {
430
+                this.requestName = value;
431
+            }
432
+
433
+        }
434
+
435
+    }
436
+
437
+
438
+    /**
439
+     * &lt;p&gt;Clase Java para anonymous complex type.
440
+     * 
441
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
442
+     * 
443
+     * &lt;pre&gt;
444
+     * &amp;lt;complexType&amp;gt;
445
+     *   &amp;lt;complexContent&amp;gt;
446
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
447
+     *       &amp;lt;sequence&amp;gt;
448
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
449
+     *       &amp;lt;/sequence&amp;gt;
450
+     *     &amp;lt;/restriction&amp;gt;
451
+     *   &amp;lt;/complexContent&amp;gt;
452
+     * &amp;lt;/complexType&amp;gt;
453
+     * &lt;/pre&gt;
454
+     * 
455
+     * 
456
+     */
457
+    @XmlAccessorType(XmlAccessType.FIELD)
458
+    @XmlType(name = "", propOrder = {
459
+        "sessionLoginId"
460
+    })
461
+    public static class SignonRq {
462
+
463
+        @XmlElement(name = "SessionLoginId", required = true)
464
+        protected String sessionLoginId;
465
+
466
+        /**
467
+         * Obtiene el valor de la propiedad sessionLoginId.
468
+         * 
469
+         * @return
470
+         *     possible object is
471
+         *     {@link String }
472
+         *     
473
+         */
474
+        public String getSessionLoginId() {
475
+            return sessionLoginId;
476
+        }
477
+
478
+        /**
479
+         * Define el valor de la propiedad sessionLoginId.
480
+         * 
481
+         * @param value
482
+         *     allowed object is
483
+         *     {@link String }
484
+         *     
485
+         */
486
+        public void setSessionLoginId(String value) {
487
+            this.sessionLoginId = value;
488
+        }
489
+
490
+    }
491
+
492
+}

+ 532 - 0
src/GenesisRequest/WorkstationMoveRequest.java 查看文件

@@ -0,0 +1,532 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:37:55 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_WorkstationMoveRequest;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="SignonRq"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
34
+ *                 &amp;lt;/sequence&amp;gt;
35
+ *               &amp;lt;/restriction&amp;gt;
36
+ *             &amp;lt;/complexContent&amp;gt;
37
+ *           &amp;lt;/complexType&amp;gt;
38
+ *         &amp;lt;/element&amp;gt;
39
+ *         &amp;lt;element name="BaseSvcRq"&amp;gt;
40
+ *           &amp;lt;complexType&amp;gt;
41
+ *             &amp;lt;complexContent&amp;gt;
42
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
43
+ *                 &amp;lt;sequence&amp;gt;
44
+ *                   &amp;lt;element name="MsgRqHdr"&amp;gt;
45
+ *                     &amp;lt;complexType&amp;gt;
46
+ *                       &amp;lt;complexContent&amp;gt;
47
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
48
+ *                           &amp;lt;sequence&amp;gt;
49
+ *                             &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
50
+ *                             &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
51
+ *                             &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
52
+ *                             &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
53
+ *                             &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                 &amp;lt;/sequence&amp;gt;
60
+ *               &amp;lt;/restriction&amp;gt;
61
+ *             &amp;lt;/complexContent&amp;gt;
62
+ *           &amp;lt;/complexType&amp;gt;
63
+ *         &amp;lt;/element&amp;gt;
64
+ *         &amp;lt;element name="BankSvcRq"&amp;gt;
65
+ *           &amp;lt;complexType&amp;gt;
66
+ *             &amp;lt;complexContent&amp;gt;
67
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                 &amp;lt;sequence&amp;gt;
69
+ *                   &amp;lt;element name="gnsCodigoSucursalOrigen" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                   &amp;lt;element name="gnsCodigoSucursalDestino" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
71
+ *                   &amp;lt;element name="gnsNumeroEstacion" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
72
+ *                 &amp;lt;/sequence&amp;gt;
73
+ *               &amp;lt;/restriction&amp;gt;
74
+ *             &amp;lt;/complexContent&amp;gt;
75
+ *           &amp;lt;/complexType&amp;gt;
76
+ *         &amp;lt;/element&amp;gt;
77
+ *       &amp;lt;/sequence&amp;gt;
78
+ *     &amp;lt;/restriction&amp;gt;
79
+ *   &amp;lt;/complexContent&amp;gt;
80
+ * &amp;lt;/complexType&amp;gt;
81
+ * &lt;/pre&gt;
82
+ * 
83
+ * 
84
+ */
85
+@XmlAccessorType(XmlAccessType.FIELD)
86
+@XmlType(name = "", propOrder = {
87
+    "signonRq",
88
+    "baseSvcRq",
89
+    "bankSvcRq"
90
+})
91
+@XmlRootElement(name = "Genesis")
92
+public class WorkstationMoveRequest {
93
+
94
+    @XmlElement(name = "SignonRq", required = true)
95
+    protected WorkstationMoveRequest.SignonRq signonRq;
96
+    @XmlElement(name = "BaseSvcRq", required = true)
97
+    protected WorkstationMoveRequest.BaseSvcRq baseSvcRq;
98
+    @XmlElement(name = "BankSvcRq", required = true)
99
+    protected WorkstationMoveRequest.BankSvcRq bankSvcRq;
100
+
101
+    /**
102
+     * Obtiene el valor de la propiedad signonRq.
103
+     * 
104
+     * @return
105
+     *     possible object is
106
+     *     {@link Genesis.SignonRq }
107
+     *     
108
+     */
109
+    public WorkstationMoveRequest.SignonRq getSignonRq() {
110
+        return signonRq;
111
+    }
112
+
113
+    /**
114
+     * Define el valor de la propiedad signonRq.
115
+     * 
116
+     * @param value
117
+     *     allowed object is
118
+     *     {@link Genesis.SignonRq }
119
+     *     
120
+     */
121
+    public void setSignonRq(WorkstationMoveRequest.SignonRq value) {
122
+        this.signonRq = value;
123
+    }
124
+
125
+    /**
126
+     * Obtiene el valor de la propiedad baseSvcRq.
127
+     * 
128
+     * @return
129
+     *     possible object is
130
+     *     {@link Genesis.BaseSvcRq }
131
+     *     
132
+     */
133
+    public WorkstationMoveRequest.BaseSvcRq getBaseSvcRq() {
134
+        return baseSvcRq;
135
+    }
136
+
137
+    /**
138
+     * Define el valor de la propiedad baseSvcRq.
139
+     * 
140
+     * @param value
141
+     *     allowed object is
142
+     *     {@link Genesis.BaseSvcRq }
143
+     *     
144
+     */
145
+    public void setBaseSvcRq(WorkstationMoveRequest.BaseSvcRq value) {
146
+        this.baseSvcRq = value;
147
+    }
148
+
149
+    /**
150
+     * Obtiene el valor de la propiedad bankSvcRq.
151
+     * 
152
+     * @return
153
+     *     possible object is
154
+     *     {@link Genesis.BankSvcRq }
155
+     *     
156
+     */
157
+    public WorkstationMoveRequest.BankSvcRq getBankSvcRq() {
158
+        return bankSvcRq;
159
+    }
160
+
161
+    /**
162
+     * Define el valor de la propiedad bankSvcRq.
163
+     * 
164
+     * @param value
165
+     *     allowed object is
166
+     *     {@link Genesis.BankSvcRq }
167
+     *     
168
+     */
169
+    public void setBankSvcRq(WorkstationMoveRequest.BankSvcRq value) {
170
+        this.bankSvcRq = value;
171
+    }
172
+
173
+
174
+    /**
175
+     * &lt;p&gt;Clase Java para anonymous complex type.
176
+     * 
177
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
178
+     * 
179
+     * &lt;pre&gt;
180
+     * &amp;lt;complexType&amp;gt;
181
+     *   &amp;lt;complexContent&amp;gt;
182
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
183
+     *       &amp;lt;sequence&amp;gt;
184
+     *         &amp;lt;element name="gnsCodigoSucursalOrigen" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
185
+     *         &amp;lt;element name="gnsCodigoSucursalDestino" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
186
+     *         &amp;lt;element name="gnsNumeroEstacion" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
187
+     *       &amp;lt;/sequence&amp;gt;
188
+     *     &amp;lt;/restriction&amp;gt;
189
+     *   &amp;lt;/complexContent&amp;gt;
190
+     * &amp;lt;/complexType&amp;gt;
191
+     * &lt;/pre&gt;
192
+     * 
193
+     * 
194
+     */
195
+    @XmlAccessorType(XmlAccessType.FIELD)
196
+    @XmlType(name = "", propOrder = {
197
+        "gnsCodigoSucursalOrigen",
198
+        "gnsCodigoSucursalDestino",
199
+        "gnsNumeroEstacion"
200
+    })
201
+    public static class BankSvcRq {
202
+
203
+        protected long gnsCodigoSucursalOrigen;
204
+        protected long gnsCodigoSucursalDestino;
205
+        protected long gnsNumeroEstacion;
206
+
207
+        /**
208
+         * Obtiene el valor de la propiedad gnsCodigoSucursalOrigen.
209
+         * 
210
+         */
211
+        public long getGnsCodigoSucursalOrigen() {
212
+            return gnsCodigoSucursalOrigen;
213
+        }
214
+
215
+        /**
216
+         * Define el valor de la propiedad gnsCodigoSucursalOrigen.
217
+         * 
218
+         */
219
+        public void setGnsCodigoSucursalOrigen(long value) {
220
+            this.gnsCodigoSucursalOrigen = value;
221
+        }
222
+
223
+        /**
224
+         * Obtiene el valor de la propiedad gnsCodigoSucursalDestino.
225
+         * 
226
+         */
227
+        public long getGnsCodigoSucursalDestino() {
228
+            return gnsCodigoSucursalDestino;
229
+        }
230
+
231
+        /**
232
+         * Define el valor de la propiedad gnsCodigoSucursalDestino.
233
+         * 
234
+         */
235
+        public void setGnsCodigoSucursalDestino(long value) {
236
+            this.gnsCodigoSucursalDestino = value;
237
+        }
238
+
239
+        /**
240
+         * Obtiene el valor de la propiedad gnsNumeroEstacion.
241
+         * 
242
+         */
243
+        public long getGnsNumeroEstacion() {
244
+            return gnsNumeroEstacion;
245
+        }
246
+
247
+        /**
248
+         * Define el valor de la propiedad gnsNumeroEstacion.
249
+         * 
250
+         */
251
+        public void setGnsNumeroEstacion(long value) {
252
+            this.gnsNumeroEstacion = value;
253
+        }
254
+
255
+    }
256
+
257
+
258
+    /**
259
+     * &lt;p&gt;Clase Java para anonymous complex type.
260
+     * 
261
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
262
+     * 
263
+     * &lt;pre&gt;
264
+     * &amp;lt;complexType&amp;gt;
265
+     *   &amp;lt;complexContent&amp;gt;
266
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
267
+     *       &amp;lt;sequence&amp;gt;
268
+     *         &amp;lt;element name="MsgRqHdr"&amp;gt;
269
+     *           &amp;lt;complexType&amp;gt;
270
+     *             &amp;lt;complexContent&amp;gt;
271
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
272
+     *                 &amp;lt;sequence&amp;gt;
273
+     *                   &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
274
+     *                   &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
275
+     *                   &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
276
+     *                   &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
277
+     *                   &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
278
+     *                 &amp;lt;/sequence&amp;gt;
279
+     *               &amp;lt;/restriction&amp;gt;
280
+     *             &amp;lt;/complexContent&amp;gt;
281
+     *           &amp;lt;/complexType&amp;gt;
282
+     *         &amp;lt;/element&amp;gt;
283
+     *       &amp;lt;/sequence&amp;gt;
284
+     *     &amp;lt;/restriction&amp;gt;
285
+     *   &amp;lt;/complexContent&amp;gt;
286
+     * &amp;lt;/complexType&amp;gt;
287
+     * &lt;/pre&gt;
288
+     * 
289
+     * 
290
+     */
291
+    @XmlAccessorType(XmlAccessType.FIELD)
292
+    @XmlType(name = "", propOrder = {
293
+        "msgRqHdr"
294
+    })
295
+    public static class BaseSvcRq {
296
+
297
+        @XmlElement(name = "MsgRqHdr", required = true)
298
+        protected WorkstationMoveRequest.BaseSvcRq.MsgRqHdr msgRqHdr;
299
+
300
+        /**
301
+         * Obtiene el valor de la propiedad msgRqHdr.
302
+         * 
303
+         * @return
304
+         *     possible object is
305
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
306
+         *     
307
+         */
308
+        public WorkstationMoveRequest.BaseSvcRq.MsgRqHdr getMsgRqHdr() {
309
+            return msgRqHdr;
310
+        }
311
+
312
+        /**
313
+         * Define el valor de la propiedad msgRqHdr.
314
+         * 
315
+         * @param value
316
+         *     allowed object is
317
+         *     {@link Genesis.BaseSvcRq.MsgRqHdr }
318
+         *     
319
+         */
320
+        public void setMsgRqHdr(WorkstationMoveRequest.BaseSvcRq.MsgRqHdr value) {
321
+            this.msgRqHdr = value;
322
+        }
323
+
324
+
325
+        /**
326
+         * &lt;p&gt;Clase Java para anonymous complex type.
327
+         * 
328
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
329
+         * 
330
+         * &lt;pre&gt;
331
+         * &amp;lt;complexType&amp;gt;
332
+         *   &amp;lt;complexContent&amp;gt;
333
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
334
+         *       &amp;lt;sequence&amp;gt;
335
+         *         &amp;lt;element name="Instance" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
336
+         *         &amp;lt;element name="BankId" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
337
+         *         &amp;lt;element name="OriginatorName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
338
+         *         &amp;lt;element name="RequestCode" type="{http://www.w3.org/2001/XMLSchema}short"/&amp;gt;
339
+         *         &amp;lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
340
+         *       &amp;lt;/sequence&amp;gt;
341
+         *     &amp;lt;/restriction&amp;gt;
342
+         *   &amp;lt;/complexContent&amp;gt;
343
+         * &amp;lt;/complexType&amp;gt;
344
+         * &lt;/pre&gt;
345
+         * 
346
+         * 
347
+         */
348
+        @XmlAccessorType(XmlAccessType.FIELD)
349
+        @XmlType(name = "", propOrder = {
350
+            "instance",
351
+            "bankId",
352
+            "originatorName",
353
+            "requestCode",
354
+            "requestName"
355
+        })
356
+        public static class MsgRqHdr {
357
+
358
+            @XmlElement(name = "Instance", required = true)
359
+            protected String instance;
360
+            @XmlElement(name = "BankId")
361
+            protected short bankId;
362
+            @XmlElement(name = "OriginatorName", required = true)
363
+            protected String originatorName;
364
+            @XmlElement(name = "RequestCode")
365
+            protected short requestCode;
366
+            @XmlElement(name = "RequestName", required = true)
367
+            protected String requestName;
368
+
369
+            /**
370
+             * Obtiene el valor de la propiedad instance.
371
+             * 
372
+             * @return
373
+             *     possible object is
374
+             *     {@link String }
375
+             *     
376
+             */
377
+            public String getInstance() {
378
+                return instance;
379
+            }
380
+
381
+            /**
382
+             * Define el valor de la propiedad instance.
383
+             * 
384
+             * @param value
385
+             *     allowed object is
386
+             *     {@link String }
387
+             *     
388
+             */
389
+            public void setInstance(String value) {
390
+                this.instance = value;
391
+            }
392
+
393
+            /**
394
+             * Obtiene el valor de la propiedad bankId.
395
+             * 
396
+             */
397
+            public short getBankId() {
398
+                return bankId;
399
+            }
400
+
401
+            /**
402
+             * Define el valor de la propiedad bankId.
403
+             * 
404
+             */
405
+            public void setBankId(short value) {
406
+                this.bankId = value;
407
+            }
408
+
409
+            /**
410
+             * Obtiene el valor de la propiedad originatorName.
411
+             * 
412
+             * @return
413
+             *     possible object is
414
+             *     {@link String }
415
+             *     
416
+             */
417
+            public String getOriginatorName() {
418
+                return originatorName;
419
+            }
420
+
421
+            /**
422
+             * Define el valor de la propiedad originatorName.
423
+             * 
424
+             * @param value
425
+             *     allowed object is
426
+             *     {@link String }
427
+             *     
428
+             */
429
+            public void setOriginatorName(String value) {
430
+                this.originatorName = value;
431
+            }
432
+
433
+            /**
434
+             * Obtiene el valor de la propiedad requestCode.
435
+             * 
436
+             */
437
+            public short getRequestCode() {
438
+                return requestCode;
439
+            }
440
+
441
+            /**
442
+             * Define el valor de la propiedad requestCode.
443
+             * 
444
+             */
445
+            public void setRequestCode(short value) {
446
+                this.requestCode = value;
447
+            }
448
+
449
+            /**
450
+             * Obtiene el valor de la propiedad requestName.
451
+             * 
452
+             * @return
453
+             *     possible object is
454
+             *     {@link String }
455
+             *     
456
+             */
457
+            public String getRequestName() {
458
+                return requestName;
459
+            }
460
+
461
+            /**
462
+             * Define el valor de la propiedad requestName.
463
+             * 
464
+             * @param value
465
+             *     allowed object is
466
+             *     {@link String }
467
+             *     
468
+             */
469
+            public void setRequestName(String value) {
470
+                this.requestName = value;
471
+            }
472
+
473
+        }
474
+
475
+    }
476
+
477
+
478
+    /**
479
+     * &lt;p&gt;Clase Java para anonymous complex type.
480
+     * 
481
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
482
+     * 
483
+     * &lt;pre&gt;
484
+     * &amp;lt;complexType&amp;gt;
485
+     *   &amp;lt;complexContent&amp;gt;
486
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
487
+     *       &amp;lt;sequence&amp;gt;
488
+     *         &amp;lt;element name="SessionLoginId" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
489
+     *       &amp;lt;/sequence&amp;gt;
490
+     *     &amp;lt;/restriction&amp;gt;
491
+     *   &amp;lt;/complexContent&amp;gt;
492
+     * &amp;lt;/complexType&amp;gt;
493
+     * &lt;/pre&gt;
494
+     * 
495
+     * 
496
+     */
497
+    @XmlAccessorType(XmlAccessType.FIELD)
498
+    @XmlType(name = "", propOrder = {
499
+        "sessionLoginId"
500
+    })
501
+    public static class SignonRq {
502
+
503
+        @XmlElement(name = "SessionLoginId", required = true)
504
+        protected String sessionLoginId;
505
+
506
+        /**
507
+         * Obtiene el valor de la propiedad sessionLoginId.
508
+         * 
509
+         * @return
510
+         *     possible object is
511
+         *     {@link String }
512
+         *     
513
+         */
514
+        public String getSessionLoginId() {
515
+            return sessionLoginId;
516
+        }
517
+
518
+        /**
519
+         * Define el valor de la propiedad sessionLoginId.
520
+         * 
521
+         * @param value
522
+         *     allowed object is
523
+         *     {@link String }
524
+         *     
525
+         */
526
+        public void setSessionLoginId(String value) {
527
+            this.sessionLoginId = value;
528
+        }
529
+
530
+    }
531
+
532
+}

+ 482 - 0
src/GenesisResponse/AddUserResponse.java 查看文件

@@ -0,0 +1,482 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:53:54 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_AddUserResponse;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="Status"&amp;gt;
34
+ *                     &amp;lt;complexType&amp;gt;
35
+ *                       &amp;lt;complexContent&amp;gt;
36
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
37
+ *                           &amp;lt;sequence&amp;gt;
38
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
39
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
40
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
41
+ *                               &amp;lt;complexType&amp;gt;
42
+ *                                 &amp;lt;complexContent&amp;gt;
43
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
44
+ *                                     &amp;lt;sequence&amp;gt;
45
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
46
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
47
+ *                                     &amp;lt;/sequence&amp;gt;
48
+ *                                   &amp;lt;/restriction&amp;gt;
49
+ *                                 &amp;lt;/complexContent&amp;gt;
50
+ *                               &amp;lt;/complexType&amp;gt;
51
+ *                             &amp;lt;/element&amp;gt;
52
+ *                           &amp;lt;/sequence&amp;gt;
53
+ *                         &amp;lt;/restriction&amp;gt;
54
+ *                       &amp;lt;/complexContent&amp;gt;
55
+ *                     &amp;lt;/complexType&amp;gt;
56
+ *                   &amp;lt;/element&amp;gt;
57
+ *                   &amp;lt;element name="WSRs"&amp;gt;
58
+ *                     &amp;lt;complexType&amp;gt;
59
+ *                       &amp;lt;complexContent&amp;gt;
60
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
61
+ *                           &amp;lt;sequence&amp;gt;
62
+ *                             &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
63
+ *                           &amp;lt;/sequence&amp;gt;
64
+ *                         &amp;lt;/restriction&amp;gt;
65
+ *                       &amp;lt;/complexContent&amp;gt;
66
+ *                     &amp;lt;/complexType&amp;gt;
67
+ *                   &amp;lt;/element&amp;gt;
68
+ *                 &amp;lt;/sequence&amp;gt;
69
+ *               &amp;lt;/restriction&amp;gt;
70
+ *             &amp;lt;/complexContent&amp;gt;
71
+ *           &amp;lt;/complexType&amp;gt;
72
+ *         &amp;lt;/element&amp;gt;
73
+ *       &amp;lt;/sequence&amp;gt;
74
+ *     &amp;lt;/restriction&amp;gt;
75
+ *   &amp;lt;/complexContent&amp;gt;
76
+ * &amp;lt;/complexType&amp;gt;
77
+ * &lt;/pre&gt;
78
+ * 
79
+ * 
80
+ */
81
+@XmlAccessorType(XmlAccessType.FIELD)
82
+@XmlType(name = "", propOrder = {
83
+    "bankSvcRs"
84
+})
85
+@XmlRootElement(name = "Genesis")
86
+public class AddUserResponse {
87
+
88
+    @XmlElement(name = "BankSvcRs", required = true)
89
+    protected AddUserResponse.BankSvcRs bankSvcRs;
90
+
91
+    /**
92
+     * Obtiene el valor de la propiedad bankSvcRs.
93
+     * 
94
+     * @return
95
+     *     possible object is
96
+     *     {@link Genesis.BankSvcRs }
97
+     *     
98
+     */
99
+    public AddUserResponse.BankSvcRs getBankSvcRs() {
100
+        return bankSvcRs;
101
+    }
102
+
103
+    /**
104
+     * Define el valor de la propiedad bankSvcRs.
105
+     * 
106
+     * @param value
107
+     *     allowed object is
108
+     *     {@link Genesis.BankSvcRs }
109
+     *     
110
+     */
111
+    public void setBankSvcRs(AddUserResponse.BankSvcRs value) {
112
+        this.bankSvcRs = value;
113
+    }
114
+
115
+
116
+    /**
117
+     * &lt;p&gt;Clase Java para anonymous complex type.
118
+     * 
119
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
120
+     * 
121
+     * &lt;pre&gt;
122
+     * &amp;lt;complexType&amp;gt;
123
+     *   &amp;lt;complexContent&amp;gt;
124
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
125
+     *       &amp;lt;sequence&amp;gt;
126
+     *         &amp;lt;element name="Status"&amp;gt;
127
+     *           &amp;lt;complexType&amp;gt;
128
+     *             &amp;lt;complexContent&amp;gt;
129
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
130
+     *                 &amp;lt;sequence&amp;gt;
131
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
132
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
133
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
134
+     *                     &amp;lt;complexType&amp;gt;
135
+     *                       &amp;lt;complexContent&amp;gt;
136
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
137
+     *                           &amp;lt;sequence&amp;gt;
138
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
139
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
140
+     *                           &amp;lt;/sequence&amp;gt;
141
+     *                         &amp;lt;/restriction&amp;gt;
142
+     *                       &amp;lt;/complexContent&amp;gt;
143
+     *                     &amp;lt;/complexType&amp;gt;
144
+     *                   &amp;lt;/element&amp;gt;
145
+     *                 &amp;lt;/sequence&amp;gt;
146
+     *               &amp;lt;/restriction&amp;gt;
147
+     *             &amp;lt;/complexContent&amp;gt;
148
+     *           &amp;lt;/complexType&amp;gt;
149
+     *         &amp;lt;/element&amp;gt;
150
+     *         &amp;lt;element name="WSRs"&amp;gt;
151
+     *           &amp;lt;complexType&amp;gt;
152
+     *             &amp;lt;complexContent&amp;gt;
153
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
154
+     *                 &amp;lt;sequence&amp;gt;
155
+     *                   &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
156
+     *                 &amp;lt;/sequence&amp;gt;
157
+     *               &amp;lt;/restriction&amp;gt;
158
+     *             &amp;lt;/complexContent&amp;gt;
159
+     *           &amp;lt;/complexType&amp;gt;
160
+     *         &amp;lt;/element&amp;gt;
161
+     *       &amp;lt;/sequence&amp;gt;
162
+     *     &amp;lt;/restriction&amp;gt;
163
+     *   &amp;lt;/complexContent&amp;gt;
164
+     * &amp;lt;/complexType&amp;gt;
165
+     * &lt;/pre&gt;
166
+     * 
167
+     * 
168
+     */
169
+    @XmlAccessorType(XmlAccessType.FIELD)
170
+    @XmlType(name = "", propOrder = {
171
+        "status",
172
+        "wsRs"
173
+    })
174
+    public static class BankSvcRs {
175
+
176
+        @XmlElement(name = "Status", required = true)
177
+        protected AddUserResponse.BankSvcRs.Status status;
178
+        @XmlElement(name = "WSRs", required = true)
179
+        protected AddUserResponse.BankSvcRs.WSRs wsRs;
180
+
181
+        /**
182
+         * Obtiene el valor de la propiedad status.
183
+         * 
184
+         * @return
185
+         *     possible object is
186
+         *     {@link Genesis.BankSvcRs.Status }
187
+         *     
188
+         */
189
+        public AddUserResponse.BankSvcRs.Status getStatus() {
190
+            return status;
191
+        }
192
+
193
+        /**
194
+         * Define el valor de la propiedad status.
195
+         * 
196
+         * @param value
197
+         *     allowed object is
198
+         *     {@link Genesis.BankSvcRs.Status }
199
+         *     
200
+         */
201
+        public void setStatus(AddUserResponse.BankSvcRs.Status value) {
202
+            this.status = value;
203
+        }
204
+
205
+        /**
206
+         * Obtiene el valor de la propiedad wsRs.
207
+         * 
208
+         * @return
209
+         *     possible object is
210
+         *     {@link Genesis.BankSvcRs.WSRs }
211
+         *     
212
+         */
213
+        public AddUserResponse.BankSvcRs.WSRs getWSRs() {
214
+            return wsRs;
215
+        }
216
+
217
+        /**
218
+         * Define el valor de la propiedad wsRs.
219
+         * 
220
+         * @param value
221
+         *     allowed object is
222
+         *     {@link Genesis.BankSvcRs.WSRs }
223
+         *     
224
+         */
225
+        public void setWSRs(AddUserResponse.BankSvcRs.WSRs value) {
226
+            this.wsRs = value;
227
+        }
228
+
229
+
230
+        /**
231
+         * &lt;p&gt;Clase Java para anonymous complex type.
232
+         * 
233
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
234
+         * 
235
+         * &lt;pre&gt;
236
+         * &amp;lt;complexType&amp;gt;
237
+         *   &amp;lt;complexContent&amp;gt;
238
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
239
+         *       &amp;lt;sequence&amp;gt;
240
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
241
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
242
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
243
+         *           &amp;lt;complexType&amp;gt;
244
+         *             &amp;lt;complexContent&amp;gt;
245
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
246
+         *                 &amp;lt;sequence&amp;gt;
247
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
248
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
249
+         *                 &amp;lt;/sequence&amp;gt;
250
+         *               &amp;lt;/restriction&amp;gt;
251
+         *             &amp;lt;/complexContent&amp;gt;
252
+         *           &amp;lt;/complexType&amp;gt;
253
+         *         &amp;lt;/element&amp;gt;
254
+         *       &amp;lt;/sequence&amp;gt;
255
+         *     &amp;lt;/restriction&amp;gt;
256
+         *   &amp;lt;/complexContent&amp;gt;
257
+         * &amp;lt;/complexType&amp;gt;
258
+         * &lt;/pre&gt;
259
+         * 
260
+         * 
261
+         */
262
+        @XmlAccessorType(XmlAccessType.FIELD)
263
+        @XmlType(name = "", propOrder = {
264
+            "statusCode",
265
+            "statusDesc",
266
+            "additionalStatus"
267
+        })
268
+        public static class Status {
269
+
270
+            @XmlElement(name = "StatusCode", required = true)
271
+            protected String statusCode;
272
+            @XmlElement(name = "StatusDesc", required = true)
273
+            protected String statusDesc;
274
+            @XmlElement(name = "AdditionalStatus", required = true)
275
+            protected AddUserResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
276
+
277
+            /**
278
+             * Obtiene el valor de la propiedad statusCode.
279
+             * 
280
+             * @return
281
+             *     possible object is
282
+             *     {@link String }
283
+             *     
284
+             */
285
+            public String getStatusCode() {
286
+                return statusCode;
287
+            }
288
+
289
+            /**
290
+             * Define el valor de la propiedad statusCode.
291
+             * 
292
+             * @param value
293
+             *     allowed object is
294
+             *     {@link String }
295
+             *     
296
+             */
297
+            public void setStatusCode(String value) {
298
+                this.statusCode = value;
299
+            }
300
+
301
+            /**
302
+             * Obtiene el valor de la propiedad statusDesc.
303
+             * 
304
+             * @return
305
+             *     possible object is
306
+             *     {@link String }
307
+             *     
308
+             */
309
+            public String getStatusDesc() {
310
+                return statusDesc;
311
+            }
312
+
313
+            /**
314
+             * Define el valor de la propiedad statusDesc.
315
+             * 
316
+             * @param value
317
+             *     allowed object is
318
+             *     {@link String }
319
+             *     
320
+             */
321
+            public void setStatusDesc(String value) {
322
+                this.statusDesc = value;
323
+            }
324
+
325
+            /**
326
+             * Obtiene el valor de la propiedad additionalStatus.
327
+             * 
328
+             * @return
329
+             *     possible object is
330
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
331
+             *     
332
+             */
333
+            public AddUserResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
334
+                return additionalStatus;
335
+            }
336
+
337
+            /**
338
+             * Define el valor de la propiedad additionalStatus.
339
+             * 
340
+             * @param value
341
+             *     allowed object is
342
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
343
+             *     
344
+             */
345
+            public void setAdditionalStatus(AddUserResponse.BankSvcRs.Status.AdditionalStatus value) {
346
+                this.additionalStatus = value;
347
+            }
348
+
349
+
350
+            /**
351
+             * &lt;p&gt;Clase Java para anonymous complex type.
352
+             * 
353
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
354
+             * 
355
+             * &lt;pre&gt;
356
+             * &amp;lt;complexType&amp;gt;
357
+             *   &amp;lt;complexContent&amp;gt;
358
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
359
+             *       &amp;lt;sequence&amp;gt;
360
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
361
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
362
+             *       &amp;lt;/sequence&amp;gt;
363
+             *     &amp;lt;/restriction&amp;gt;
364
+             *   &amp;lt;/complexContent&amp;gt;
365
+             * &amp;lt;/complexType&amp;gt;
366
+             * &lt;/pre&gt;
367
+             * 
368
+             * 
369
+             */
370
+            @XmlAccessorType(XmlAccessType.FIELD)
371
+            @XmlType(name = "", propOrder = {
372
+                "statusCode",
373
+                "statusDesc"
374
+            })
375
+            public static class AdditionalStatus {
376
+
377
+                @XmlElement(name = "StatusCode", required = true)
378
+                protected String statusCode;
379
+                @XmlElement(name = "StatusDesc", required = true)
380
+                protected String statusDesc;
381
+
382
+                /**
383
+                 * Obtiene el valor de la propiedad statusCode.
384
+                 * 
385
+                 * @return
386
+                 *     possible object is
387
+                 *     {@link String }
388
+                 *     
389
+                 */
390
+                public String getStatusCode() {
391
+                    return statusCode;
392
+                }
393
+
394
+                /**
395
+                 * Define el valor de la propiedad statusCode.
396
+                 * 
397
+                 * @param value
398
+                 *     allowed object is
399
+                 *     {@link String }
400
+                 *     
401
+                 */
402
+                public void setStatusCode(String value) {
403
+                    this.statusCode = value;
404
+                }
405
+
406
+                /**
407
+                 * Obtiene el valor de la propiedad statusDesc.
408
+                 * 
409
+                 * @return
410
+                 *     possible object is
411
+                 *     {@link String }
412
+                 *     
413
+                 */
414
+                public String getStatusDesc() {
415
+                    return statusDesc;
416
+                }
417
+
418
+                /**
419
+                 * Define el valor de la propiedad statusDesc.
420
+                 * 
421
+                 * @param value
422
+                 *     allowed object is
423
+                 *     {@link String }
424
+                 *     
425
+                 */
426
+                public void setStatusDesc(String value) {
427
+                    this.statusDesc = value;
428
+                }
429
+
430
+            }
431
+
432
+        }
433
+
434
+
435
+        /**
436
+         * &lt;p&gt;Clase Java para anonymous complex type.
437
+         * 
438
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
439
+         * 
440
+         * &lt;pre&gt;
441
+         * &amp;lt;complexType&amp;gt;
442
+         *   &amp;lt;complexContent&amp;gt;
443
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
444
+         *       &amp;lt;sequence&amp;gt;
445
+         *         &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
446
+         *       &amp;lt;/sequence&amp;gt;
447
+         *     &amp;lt;/restriction&amp;gt;
448
+         *   &amp;lt;/complexContent&amp;gt;
449
+         * &amp;lt;/complexType&amp;gt;
450
+         * &lt;/pre&gt;
451
+         * 
452
+         * 
453
+         */
454
+        @XmlAccessorType(XmlAccessType.FIELD)
455
+        @XmlType(name = "", propOrder = {
456
+            "gnsIDUsuario"
457
+        })
458
+        public static class WSRs {
459
+
460
+            protected long gnsIDUsuario;
461
+
462
+            /**
463
+             * Obtiene el valor de la propiedad gnsIDUsuario.
464
+             * 
465
+             */
466
+            public long getGnsIDUsuario() {
467
+                return gnsIDUsuario;
468
+            }
469
+
470
+            /**
471
+             * Define el valor de la propiedad gnsIDUsuario.
472
+             * 
473
+             */
474
+            public void setGnsIDUsuario(long value) {
475
+                this.gnsIDUsuario = value;
476
+            }
477
+
478
+        }
479
+
480
+    }
481
+
482
+}

+ 416 - 0
src/GenesisResponse/AssignUpdateRoleByUserResponse.java 查看文件

@@ -0,0 +1,416 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:56:42 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_AssignUpdateRoleByUserResponse;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="Status"&amp;gt;
34
+ *                     &amp;lt;complexType&amp;gt;
35
+ *                       &amp;lt;complexContent&amp;gt;
36
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
37
+ *                           &amp;lt;sequence&amp;gt;
38
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
39
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
40
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
41
+ *                               &amp;lt;complexType&amp;gt;
42
+ *                                 &amp;lt;complexContent&amp;gt;
43
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
44
+ *                                     &amp;lt;sequence&amp;gt;
45
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
46
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
47
+ *                                     &amp;lt;/sequence&amp;gt;
48
+ *                                   &amp;lt;/restriction&amp;gt;
49
+ *                                 &amp;lt;/complexContent&amp;gt;
50
+ *                               &amp;lt;/complexType&amp;gt;
51
+ *                             &amp;lt;/element&amp;gt;
52
+ *                           &amp;lt;/sequence&amp;gt;
53
+ *                         &amp;lt;/restriction&amp;gt;
54
+ *                       &amp;lt;/complexContent&amp;gt;
55
+ *                     &amp;lt;/complexType&amp;gt;
56
+ *                   &amp;lt;/element&amp;gt;
57
+ *                   &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
58
+ *                 &amp;lt;/sequence&amp;gt;
59
+ *               &amp;lt;/restriction&amp;gt;
60
+ *             &amp;lt;/complexContent&amp;gt;
61
+ *           &amp;lt;/complexType&amp;gt;
62
+ *         &amp;lt;/element&amp;gt;
63
+ *       &amp;lt;/sequence&amp;gt;
64
+ *     &amp;lt;/restriction&amp;gt;
65
+ *   &amp;lt;/complexContent&amp;gt;
66
+ * &amp;lt;/complexType&amp;gt;
67
+ * &lt;/pre&gt;
68
+ * 
69
+ * 
70
+ */
71
+@XmlAccessorType(XmlAccessType.FIELD)
72
+@XmlType(name = "", propOrder = {
73
+    "bankSvcRs"
74
+})
75
+@XmlRootElement(name = "Genesis")
76
+public class AssignUpdateRoleByUserResponse {
77
+
78
+    @XmlElement(name = "BankSvcRs", required = true)
79
+    protected AssignUpdateRoleByUserResponse.BankSvcRs bankSvcRs;
80
+
81
+    /**
82
+     * Obtiene el valor de la propiedad bankSvcRs.
83
+     * 
84
+     * @return
85
+     *     possible object is
86
+     *     {@link Genesis.BankSvcRs }
87
+     *     
88
+     */
89
+    public AssignUpdateRoleByUserResponse.BankSvcRs getBankSvcRs() {
90
+        return bankSvcRs;
91
+    }
92
+
93
+    /**
94
+     * Define el valor de la propiedad bankSvcRs.
95
+     * 
96
+     * @param value
97
+     *     allowed object is
98
+     *     {@link Genesis.BankSvcRs }
99
+     *     
100
+     */
101
+    public void setBankSvcRs(AssignUpdateRoleByUserResponse.BankSvcRs value) {
102
+        this.bankSvcRs = value;
103
+    }
104
+
105
+
106
+    /**
107
+     * &lt;p&gt;Clase Java para anonymous complex type.
108
+     * 
109
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
110
+     * 
111
+     * &lt;pre&gt;
112
+     * &amp;lt;complexType&amp;gt;
113
+     *   &amp;lt;complexContent&amp;gt;
114
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
115
+     *       &amp;lt;sequence&amp;gt;
116
+     *         &amp;lt;element name="Status"&amp;gt;
117
+     *           &amp;lt;complexType&amp;gt;
118
+     *             &amp;lt;complexContent&amp;gt;
119
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
120
+     *                 &amp;lt;sequence&amp;gt;
121
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
122
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
123
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
124
+     *                     &amp;lt;complexType&amp;gt;
125
+     *                       &amp;lt;complexContent&amp;gt;
126
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
127
+     *                           &amp;lt;sequence&amp;gt;
128
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
129
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
130
+     *                           &amp;lt;/sequence&amp;gt;
131
+     *                         &amp;lt;/restriction&amp;gt;
132
+     *                       &amp;lt;/complexContent&amp;gt;
133
+     *                     &amp;lt;/complexType&amp;gt;
134
+     *                   &amp;lt;/element&amp;gt;
135
+     *                 &amp;lt;/sequence&amp;gt;
136
+     *               &amp;lt;/restriction&amp;gt;
137
+     *             &amp;lt;/complexContent&amp;gt;
138
+     *           &amp;lt;/complexType&amp;gt;
139
+     *         &amp;lt;/element&amp;gt;
140
+     *         &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
141
+     *       &amp;lt;/sequence&amp;gt;
142
+     *     &amp;lt;/restriction&amp;gt;
143
+     *   &amp;lt;/complexContent&amp;gt;
144
+     * &amp;lt;/complexType&amp;gt;
145
+     * &lt;/pre&gt;
146
+     * 
147
+     * 
148
+     */
149
+    @XmlAccessorType(XmlAccessType.FIELD)
150
+    @XmlType(name = "", propOrder = {
151
+        "status",
152
+        "wsRs"
153
+    })
154
+    public static class BankSvcRs {
155
+
156
+        @XmlElement(name = "Status", required = true)
157
+        protected AssignUpdateRoleByUserResponse.BankSvcRs.Status status;
158
+        @XmlElement(name = "WSRs", required = true)
159
+        protected String wsRs;
160
+
161
+        /**
162
+         * Obtiene el valor de la propiedad status.
163
+         * 
164
+         * @return
165
+         *     possible object is
166
+         *     {@link Genesis.BankSvcRs.Status }
167
+         *     
168
+         */
169
+        public AssignUpdateRoleByUserResponse.BankSvcRs.Status getStatus() {
170
+            return status;
171
+        }
172
+
173
+        /**
174
+         * Define el valor de la propiedad status.
175
+         * 
176
+         * @param value
177
+         *     allowed object is
178
+         *     {@link Genesis.BankSvcRs.Status }
179
+         *     
180
+         */
181
+        public void setStatus(AssignUpdateRoleByUserResponse.BankSvcRs.Status value) {
182
+            this.status = value;
183
+        }
184
+
185
+        /**
186
+         * Obtiene el valor de la propiedad wsRs.
187
+         * 
188
+         * @return
189
+         *     possible object is
190
+         *     {@link String }
191
+         *     
192
+         */
193
+        public String getWSRs() {
194
+            return wsRs;
195
+        }
196
+
197
+        /**
198
+         * Define el valor de la propiedad wsRs.
199
+         * 
200
+         * @param value
201
+         *     allowed object is
202
+         *     {@link String }
203
+         *     
204
+         */
205
+        public void setWSRs(String value) {
206
+            this.wsRs = value;
207
+        }
208
+
209
+
210
+        /**
211
+         * &lt;p&gt;Clase Java para anonymous complex type.
212
+         * 
213
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
214
+         * 
215
+         * &lt;pre&gt;
216
+         * &amp;lt;complexType&amp;gt;
217
+         *   &amp;lt;complexContent&amp;gt;
218
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
219
+         *       &amp;lt;sequence&amp;gt;
220
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
221
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
222
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
223
+         *           &amp;lt;complexType&amp;gt;
224
+         *             &amp;lt;complexContent&amp;gt;
225
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
226
+         *                 &amp;lt;sequence&amp;gt;
227
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
228
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
229
+         *                 &amp;lt;/sequence&amp;gt;
230
+         *               &amp;lt;/restriction&amp;gt;
231
+         *             &amp;lt;/complexContent&amp;gt;
232
+         *           &amp;lt;/complexType&amp;gt;
233
+         *         &amp;lt;/element&amp;gt;
234
+         *       &amp;lt;/sequence&amp;gt;
235
+         *     &amp;lt;/restriction&amp;gt;
236
+         *   &amp;lt;/complexContent&amp;gt;
237
+         * &amp;lt;/complexType&amp;gt;
238
+         * &lt;/pre&gt;
239
+         * 
240
+         * 
241
+         */
242
+        @XmlAccessorType(XmlAccessType.FIELD)
243
+        @XmlType(name = "", propOrder = {
244
+            "statusCode",
245
+            "statusDesc",
246
+            "additionalStatus"
247
+        })
248
+        public static class Status {
249
+
250
+            @XmlElement(name = "StatusCode", required = true)
251
+            protected String statusCode;
252
+            @XmlElement(name = "StatusDesc", required = true)
253
+            protected String statusDesc;
254
+            @XmlElement(name = "AdditionalStatus", required = true)
255
+            protected AssignUpdateRoleByUserResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
256
+
257
+            /**
258
+             * Obtiene el valor de la propiedad statusCode.
259
+             * 
260
+             * @return
261
+             *     possible object is
262
+             *     {@link String }
263
+             *     
264
+             */
265
+            public String getStatusCode() {
266
+                return statusCode;
267
+            }
268
+
269
+            /**
270
+             * Define el valor de la propiedad statusCode.
271
+             * 
272
+             * @param value
273
+             *     allowed object is
274
+             *     {@link String }
275
+             *     
276
+             */
277
+            public void setStatusCode(String value) {
278
+                this.statusCode = value;
279
+            }
280
+
281
+            /**
282
+             * Obtiene el valor de la propiedad statusDesc.
283
+             * 
284
+             * @return
285
+             *     possible object is
286
+             *     {@link String }
287
+             *     
288
+             */
289
+            public String getStatusDesc() {
290
+                return statusDesc;
291
+            }
292
+
293
+            /**
294
+             * Define el valor de la propiedad statusDesc.
295
+             * 
296
+             * @param value
297
+             *     allowed object is
298
+             *     {@link String }
299
+             *     
300
+             */
301
+            public void setStatusDesc(String value) {
302
+                this.statusDesc = value;
303
+            }
304
+
305
+            /**
306
+             * Obtiene el valor de la propiedad additionalStatus.
307
+             * 
308
+             * @return
309
+             *     possible object is
310
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
311
+             *     
312
+             */
313
+            public AssignUpdateRoleByUserResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
314
+                return additionalStatus;
315
+            }
316
+
317
+            /**
318
+             * Define el valor de la propiedad additionalStatus.
319
+             * 
320
+             * @param value
321
+             *     allowed object is
322
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
323
+             *     
324
+             */
325
+            public void setAdditionalStatus(AssignUpdateRoleByUserResponse.BankSvcRs.Status.AdditionalStatus value) {
326
+                this.additionalStatus = value;
327
+            }
328
+
329
+
330
+            /**
331
+             * &lt;p&gt;Clase Java para anonymous complex type.
332
+             * 
333
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
334
+             * 
335
+             * &lt;pre&gt;
336
+             * &amp;lt;complexType&amp;gt;
337
+             *   &amp;lt;complexContent&amp;gt;
338
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
339
+             *       &amp;lt;sequence&amp;gt;
340
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
341
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
342
+             *       &amp;lt;/sequence&amp;gt;
343
+             *     &amp;lt;/restriction&amp;gt;
344
+             *   &amp;lt;/complexContent&amp;gt;
345
+             * &amp;lt;/complexType&amp;gt;
346
+             * &lt;/pre&gt;
347
+             * 
348
+             * 
349
+             */
350
+            @XmlAccessorType(XmlAccessType.FIELD)
351
+            @XmlType(name = "", propOrder = {
352
+                "statusCode",
353
+                "statusDesc"
354
+            })
355
+            public static class AdditionalStatus {
356
+
357
+                @XmlElement(name = "StatusCode", required = true)
358
+                protected String statusCode;
359
+                @XmlElement(name = "StatusDesc", required = true)
360
+                protected String statusDesc;
361
+
362
+                /**
363
+                 * Obtiene el valor de la propiedad statusCode.
364
+                 * 
365
+                 * @return
366
+                 *     possible object is
367
+                 *     {@link String }
368
+                 *     
369
+                 */
370
+                public String getStatusCode() {
371
+                    return statusCode;
372
+                }
373
+
374
+                /**
375
+                 * Define el valor de la propiedad statusCode.
376
+                 * 
377
+                 * @param value
378
+                 *     allowed object is
379
+                 *     {@link String }
380
+                 *     
381
+                 */
382
+                public void setStatusCode(String value) {
383
+                    this.statusCode = value;
384
+                }
385
+
386
+                /**
387
+                 * Obtiene el valor de la propiedad statusDesc.
388
+                 * 
389
+                 * @return
390
+                 *     possible object is
391
+                 *     {@link String }
392
+                 *     
393
+                 */
394
+                public String getStatusDesc() {
395
+                    return statusDesc;
396
+                }
397
+
398
+                /**
399
+                 * Define el valor de la propiedad statusDesc.
400
+                 * 
401
+                 * @param value
402
+                 *     allowed object is
403
+                 *     {@link String }
404
+                 *     
405
+                 */
406
+                public void setStatusDesc(String value) {
407
+                    this.statusDesc = value;
408
+                }
409
+
410
+            }
411
+
412
+        }
413
+
414
+    }
415
+
416
+}

+ 606 - 0
src/GenesisResponse/BranchListResponse.java 查看文件

@@ -0,0 +1,606 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 02:59:02 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_BranchListResponse;
10
+
11
+import java.util.ArrayList;
12
+import java.util.List;
13
+import javax.xml.bind.annotation.XmlAccessType;
14
+import javax.xml.bind.annotation.XmlAccessorType;
15
+import javax.xml.bind.annotation.XmlElement;
16
+import javax.xml.bind.annotation.XmlRootElement;
17
+import javax.xml.bind.annotation.XmlType;
18
+
19
+
20
+/**
21
+ * &lt;p&gt;Clase Java para anonymous complex type.
22
+ * 
23
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
24
+ * 
25
+ * &lt;pre&gt;
26
+ * &amp;lt;complexType&amp;gt;
27
+ *   &amp;lt;complexContent&amp;gt;
28
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
29
+ *       &amp;lt;sequence&amp;gt;
30
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
31
+ *           &amp;lt;complexType&amp;gt;
32
+ *             &amp;lt;complexContent&amp;gt;
33
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
34
+ *                 &amp;lt;sequence&amp;gt;
35
+ *                   &amp;lt;element name="Status"&amp;gt;
36
+ *                     &amp;lt;complexType&amp;gt;
37
+ *                       &amp;lt;complexContent&amp;gt;
38
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
39
+ *                           &amp;lt;sequence&amp;gt;
40
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
41
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
42
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
43
+ *                               &amp;lt;complexType&amp;gt;
44
+ *                                 &amp;lt;complexContent&amp;gt;
45
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
46
+ *                                     &amp;lt;sequence&amp;gt;
47
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
48
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
49
+ *                                     &amp;lt;/sequence&amp;gt;
50
+ *                                   &amp;lt;/restriction&amp;gt;
51
+ *                                 &amp;lt;/complexContent&amp;gt;
52
+ *                               &amp;lt;/complexType&amp;gt;
53
+ *                             &amp;lt;/element&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                   &amp;lt;element name="WSRs"&amp;gt;
60
+ *                     &amp;lt;complexType&amp;gt;
61
+ *                       &amp;lt;complexContent&amp;gt;
62
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
63
+ *                           &amp;lt;sequence&amp;gt;
64
+ *                             &amp;lt;element name="Sucursal" maxOccurs="unbounded" minOccurs="0"&amp;gt;
65
+ *                               &amp;lt;complexType&amp;gt;
66
+ *                                 &amp;lt;complexContent&amp;gt;
67
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                                     &amp;lt;sequence&amp;gt;
69
+ *                                       &amp;lt;element name="CodigoDeSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                                       &amp;lt;element name="NombredeSucursal" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
71
+ *                                     &amp;lt;/sequence&amp;gt;
72
+ *                                   &amp;lt;/restriction&amp;gt;
73
+ *                                 &amp;lt;/complexContent&amp;gt;
74
+ *                               &amp;lt;/complexType&amp;gt;
75
+ *                             &amp;lt;/element&amp;gt;
76
+ *                           &amp;lt;/sequence&amp;gt;
77
+ *                         &amp;lt;/restriction&amp;gt;
78
+ *                       &amp;lt;/complexContent&amp;gt;
79
+ *                     &amp;lt;/complexType&amp;gt;
80
+ *                   &amp;lt;/element&amp;gt;
81
+ *                 &amp;lt;/sequence&amp;gt;
82
+ *               &amp;lt;/restriction&amp;gt;
83
+ *             &amp;lt;/complexContent&amp;gt;
84
+ *           &amp;lt;/complexType&amp;gt;
85
+ *         &amp;lt;/element&amp;gt;
86
+ *       &amp;lt;/sequence&amp;gt;
87
+ *     &amp;lt;/restriction&amp;gt;
88
+ *   &amp;lt;/complexContent&amp;gt;
89
+ * &amp;lt;/complexType&amp;gt;
90
+ * &lt;/pre&gt;
91
+ * 
92
+ * 
93
+ */
94
+@XmlAccessorType(XmlAccessType.FIELD)
95
+@XmlType(name = "", propOrder = {
96
+    "bankSvcRs"
97
+})
98
+@XmlRootElement(name = "Genesis")
99
+public class BranchListResponse {
100
+
101
+    @XmlElement(name = "BankSvcRs", required = true)
102
+    protected BranchListResponse.BankSvcRs bankSvcRs;
103
+
104
+    /**
105
+     * Obtiene el valor de la propiedad bankSvcRs.
106
+     * 
107
+     * @return
108
+     *     possible object is
109
+     *     {@link Genesis.BankSvcRs }
110
+     *     
111
+     */
112
+    public BranchListResponse.BankSvcRs getBankSvcRs() {
113
+        return bankSvcRs;
114
+    }
115
+
116
+    /**
117
+     * Define el valor de la propiedad bankSvcRs.
118
+     * 
119
+     * @param value
120
+     *     allowed object is
121
+     *     {@link Genesis.BankSvcRs }
122
+     *     
123
+     */
124
+    public void setBankSvcRs(BranchListResponse.BankSvcRs value) {
125
+        this.bankSvcRs = value;
126
+    }
127
+
128
+
129
+    /**
130
+     * &lt;p&gt;Clase Java para anonymous complex type.
131
+     * 
132
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
133
+     * 
134
+     * &lt;pre&gt;
135
+     * &amp;lt;complexType&amp;gt;
136
+     *   &amp;lt;complexContent&amp;gt;
137
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
138
+     *       &amp;lt;sequence&amp;gt;
139
+     *         &amp;lt;element name="Status"&amp;gt;
140
+     *           &amp;lt;complexType&amp;gt;
141
+     *             &amp;lt;complexContent&amp;gt;
142
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
143
+     *                 &amp;lt;sequence&amp;gt;
144
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
145
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
146
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
147
+     *                     &amp;lt;complexType&amp;gt;
148
+     *                       &amp;lt;complexContent&amp;gt;
149
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
150
+     *                           &amp;lt;sequence&amp;gt;
151
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
152
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
153
+     *                           &amp;lt;/sequence&amp;gt;
154
+     *                         &amp;lt;/restriction&amp;gt;
155
+     *                       &amp;lt;/complexContent&amp;gt;
156
+     *                     &amp;lt;/complexType&amp;gt;
157
+     *                   &amp;lt;/element&amp;gt;
158
+     *                 &amp;lt;/sequence&amp;gt;
159
+     *               &amp;lt;/restriction&amp;gt;
160
+     *             &amp;lt;/complexContent&amp;gt;
161
+     *           &amp;lt;/complexType&amp;gt;
162
+     *         &amp;lt;/element&amp;gt;
163
+     *         &amp;lt;element name="WSRs"&amp;gt;
164
+     *           &amp;lt;complexType&amp;gt;
165
+     *             &amp;lt;complexContent&amp;gt;
166
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
167
+     *                 &amp;lt;sequence&amp;gt;
168
+     *                   &amp;lt;element name="Sucursal" maxOccurs="unbounded" minOccurs="0"&amp;gt;
169
+     *                     &amp;lt;complexType&amp;gt;
170
+     *                       &amp;lt;complexContent&amp;gt;
171
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
172
+     *                           &amp;lt;sequence&amp;gt;
173
+     *                             &amp;lt;element name="CodigoDeSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
174
+     *                             &amp;lt;element name="NombredeSucursal" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
175
+     *                           &amp;lt;/sequence&amp;gt;
176
+     *                         &amp;lt;/restriction&amp;gt;
177
+     *                       &amp;lt;/complexContent&amp;gt;
178
+     *                     &amp;lt;/complexType&amp;gt;
179
+     *                   &amp;lt;/element&amp;gt;
180
+     *                 &amp;lt;/sequence&amp;gt;
181
+     *               &amp;lt;/restriction&amp;gt;
182
+     *             &amp;lt;/complexContent&amp;gt;
183
+     *           &amp;lt;/complexType&amp;gt;
184
+     *         &amp;lt;/element&amp;gt;
185
+     *       &amp;lt;/sequence&amp;gt;
186
+     *     &amp;lt;/restriction&amp;gt;
187
+     *   &amp;lt;/complexContent&amp;gt;
188
+     * &amp;lt;/complexType&amp;gt;
189
+     * &lt;/pre&gt;
190
+     * 
191
+     * 
192
+     */
193
+    @XmlAccessorType(XmlAccessType.FIELD)
194
+    @XmlType(name = "", propOrder = {
195
+        "status",
196
+        "wsRs"
197
+    })
198
+    public static class BankSvcRs {
199
+
200
+        @XmlElement(name = "Status", required = true)
201
+        protected BranchListResponse.BankSvcRs.Status status;
202
+        @XmlElement(name = "WSRs", required = true)
203
+        protected BranchListResponse.BankSvcRs.WSRs wsRs;
204
+
205
+        /**
206
+         * Obtiene el valor de la propiedad status.
207
+         * 
208
+         * @return
209
+         *     possible object is
210
+         *     {@link Genesis.BankSvcRs.Status }
211
+         *     
212
+         */
213
+        public BranchListResponse.BankSvcRs.Status getStatus() {
214
+            return status;
215
+        }
216
+
217
+        /**
218
+         * Define el valor de la propiedad status.
219
+         * 
220
+         * @param value
221
+         *     allowed object is
222
+         *     {@link Genesis.BankSvcRs.Status }
223
+         *     
224
+         */
225
+        public void setStatus(BranchListResponse.BankSvcRs.Status value) {
226
+            this.status = value;
227
+        }
228
+
229
+        /**
230
+         * Obtiene el valor de la propiedad wsRs.
231
+         * 
232
+         * @return
233
+         *     possible object is
234
+         *     {@link Genesis.BankSvcRs.WSRs }
235
+         *     
236
+         */
237
+        public BranchListResponse.BankSvcRs.WSRs getWSRs() {
238
+            return wsRs;
239
+        }
240
+
241
+        /**
242
+         * Define el valor de la propiedad wsRs.
243
+         * 
244
+         * @param value
245
+         *     allowed object is
246
+         *     {@link Genesis.BankSvcRs.WSRs }
247
+         *     
248
+         */
249
+        public void setWSRs(BranchListResponse.BankSvcRs.WSRs value) {
250
+            this.wsRs = value;
251
+        }
252
+
253
+
254
+        /**
255
+         * &lt;p&gt;Clase Java para anonymous complex type.
256
+         * 
257
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
258
+         * 
259
+         * &lt;pre&gt;
260
+         * &amp;lt;complexType&amp;gt;
261
+         *   &amp;lt;complexContent&amp;gt;
262
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
263
+         *       &amp;lt;sequence&amp;gt;
264
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
265
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
266
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
267
+         *           &amp;lt;complexType&amp;gt;
268
+         *             &amp;lt;complexContent&amp;gt;
269
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
270
+         *                 &amp;lt;sequence&amp;gt;
271
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
272
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
273
+         *                 &amp;lt;/sequence&amp;gt;
274
+         *               &amp;lt;/restriction&amp;gt;
275
+         *             &amp;lt;/complexContent&amp;gt;
276
+         *           &amp;lt;/complexType&amp;gt;
277
+         *         &amp;lt;/element&amp;gt;
278
+         *       &amp;lt;/sequence&amp;gt;
279
+         *     &amp;lt;/restriction&amp;gt;
280
+         *   &amp;lt;/complexContent&amp;gt;
281
+         * &amp;lt;/complexType&amp;gt;
282
+         * &lt;/pre&gt;
283
+         * 
284
+         * 
285
+         */
286
+        @XmlAccessorType(XmlAccessType.FIELD)
287
+        @XmlType(name = "", propOrder = {
288
+            "statusCode",
289
+            "statusDesc",
290
+            "additionalStatus"
291
+        })
292
+        public static class Status {
293
+
294
+            @XmlElement(name = "StatusCode", required = true)
295
+            protected String statusCode;
296
+            @XmlElement(name = "StatusDesc", required = true)
297
+            protected String statusDesc;
298
+            @XmlElement(name = "AdditionalStatus", required = true)
299
+            protected BranchListResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
300
+
301
+            /**
302
+             * Obtiene el valor de la propiedad statusCode.
303
+             * 
304
+             * @return
305
+             *     possible object is
306
+             *     {@link String }
307
+             *     
308
+             */
309
+            public String getStatusCode() {
310
+                return statusCode;
311
+            }
312
+
313
+            /**
314
+             * Define el valor de la propiedad statusCode.
315
+             * 
316
+             * @param value
317
+             *     allowed object is
318
+             *     {@link String }
319
+             *     
320
+             */
321
+            public void setStatusCode(String value) {
322
+                this.statusCode = value;
323
+            }
324
+
325
+            /**
326
+             * Obtiene el valor de la propiedad statusDesc.
327
+             * 
328
+             * @return
329
+             *     possible object is
330
+             *     {@link String }
331
+             *     
332
+             */
333
+            public String getStatusDesc() {
334
+                return statusDesc;
335
+            }
336
+
337
+            /**
338
+             * Define el valor de la propiedad statusDesc.
339
+             * 
340
+             * @param value
341
+             *     allowed object is
342
+             *     {@link String }
343
+             *     
344
+             */
345
+            public void setStatusDesc(String value) {
346
+                this.statusDesc = value;
347
+            }
348
+
349
+            /**
350
+             * Obtiene el valor de la propiedad additionalStatus.
351
+             * 
352
+             * @return
353
+             *     possible object is
354
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
355
+             *     
356
+             */
357
+            public BranchListResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
358
+                return additionalStatus;
359
+            }
360
+
361
+            /**
362
+             * Define el valor de la propiedad additionalStatus.
363
+             * 
364
+             * @param value
365
+             *     allowed object is
366
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
367
+             *     
368
+             */
369
+            public void setAdditionalStatus(BranchListResponse.BankSvcRs.Status.AdditionalStatus value) {
370
+                this.additionalStatus = value;
371
+            }
372
+
373
+
374
+            /**
375
+             * &lt;p&gt;Clase Java para anonymous complex type.
376
+             * 
377
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
378
+             * 
379
+             * &lt;pre&gt;
380
+             * &amp;lt;complexType&amp;gt;
381
+             *   &amp;lt;complexContent&amp;gt;
382
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
383
+             *       &amp;lt;sequence&amp;gt;
384
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
385
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
386
+             *       &amp;lt;/sequence&amp;gt;
387
+             *     &amp;lt;/restriction&amp;gt;
388
+             *   &amp;lt;/complexContent&amp;gt;
389
+             * &amp;lt;/complexType&amp;gt;
390
+             * &lt;/pre&gt;
391
+             * 
392
+             * 
393
+             */
394
+            @XmlAccessorType(XmlAccessType.FIELD)
395
+            @XmlType(name = "", propOrder = {
396
+                "statusCode",
397
+                "statusDesc"
398
+            })
399
+            public static class AdditionalStatus {
400
+
401
+                @XmlElement(name = "StatusCode", required = true)
402
+                protected String statusCode;
403
+                @XmlElement(name = "StatusDesc", required = true)
404
+                protected String statusDesc;
405
+
406
+                /**
407
+                 * Obtiene el valor de la propiedad statusCode.
408
+                 * 
409
+                 * @return
410
+                 *     possible object is
411
+                 *     {@link String }
412
+                 *     
413
+                 */
414
+                public String getStatusCode() {
415
+                    return statusCode;
416
+                }
417
+
418
+                /**
419
+                 * Define el valor de la propiedad statusCode.
420
+                 * 
421
+                 * @param value
422
+                 *     allowed object is
423
+                 *     {@link String }
424
+                 *     
425
+                 */
426
+                public void setStatusCode(String value) {
427
+                    this.statusCode = value;
428
+                }
429
+
430
+                /**
431
+                 * Obtiene el valor de la propiedad statusDesc.
432
+                 * 
433
+                 * @return
434
+                 *     possible object is
435
+                 *     {@link String }
436
+                 *     
437
+                 */
438
+                public String getStatusDesc() {
439
+                    return statusDesc;
440
+                }
441
+
442
+                /**
443
+                 * Define el valor de la propiedad statusDesc.
444
+                 * 
445
+                 * @param value
446
+                 *     allowed object is
447
+                 *     {@link String }
448
+                 *     
449
+                 */
450
+                public void setStatusDesc(String value) {
451
+                    this.statusDesc = value;
452
+                }
453
+
454
+            }
455
+
456
+        }
457
+
458
+
459
+        /**
460
+         * &lt;p&gt;Clase Java para anonymous complex type.
461
+         * 
462
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
463
+         * 
464
+         * &lt;pre&gt;
465
+         * &amp;lt;complexType&amp;gt;
466
+         *   &amp;lt;complexContent&amp;gt;
467
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
468
+         *       &amp;lt;sequence&amp;gt;
469
+         *         &amp;lt;element name="Sucursal" maxOccurs="unbounded" minOccurs="0"&amp;gt;
470
+         *           &amp;lt;complexType&amp;gt;
471
+         *             &amp;lt;complexContent&amp;gt;
472
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
473
+         *                 &amp;lt;sequence&amp;gt;
474
+         *                   &amp;lt;element name="CodigoDeSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
475
+         *                   &amp;lt;element name="NombredeSucursal" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
476
+         *                 &amp;lt;/sequence&amp;gt;
477
+         *               &amp;lt;/restriction&amp;gt;
478
+         *             &amp;lt;/complexContent&amp;gt;
479
+         *           &amp;lt;/complexType&amp;gt;
480
+         *         &amp;lt;/element&amp;gt;
481
+         *       &amp;lt;/sequence&amp;gt;
482
+         *     &amp;lt;/restriction&amp;gt;
483
+         *   &amp;lt;/complexContent&amp;gt;
484
+         * &amp;lt;/complexType&amp;gt;
485
+         * &lt;/pre&gt;
486
+         * 
487
+         * 
488
+         */
489
+        @XmlAccessorType(XmlAccessType.FIELD)
490
+        @XmlType(name = "", propOrder = {
491
+            "sucursal"
492
+        })
493
+        public static class WSRs {
494
+
495
+            @XmlElement(name = "Sucursal")
496
+            protected List<BranchListResponse.BankSvcRs.WSRs.Sucursal> sucursal;
497
+
498
+            /**
499
+             * Gets the value of the sucursal property.
500
+             * 
501
+             * &lt;p&gt;
502
+             * This accessor method returns a reference to the live list,
503
+             * not a snapshot. Therefore any modification you make to the
504
+             * returned list will be present inside the JAXB object.
505
+             * This is why there is not a &lt;CODE&gt;set&lt;/CODE&gt; method for the sucursal property.
506
+             * 
507
+             * &lt;p&gt;
508
+             * For example, to add a new item, do as follows:
509
+             * &lt;pre&gt;
510
+             *    getSucursal().add(newItem);
511
+             * &lt;/pre&gt;
512
+             * 
513
+             * 
514
+             * &lt;p&gt;
515
+             * Objects of the following type(s) are allowed in the list
516
+             * {@link Genesis.BankSvcRs.WSRs.Sucursal }
517
+             * 
518
+             * 
519
+             */
520
+            public List<BranchListResponse.BankSvcRs.WSRs.Sucursal> getSucursal() {
521
+                if (sucursal == null) {
522
+                    sucursal = new ArrayList<BranchListResponse.BankSvcRs.WSRs.Sucursal>();
523
+                }
524
+                return this.sucursal;
525
+            }
526
+
527
+
528
+            /**
529
+             * &lt;p&gt;Clase Java para anonymous complex type.
530
+             * 
531
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
532
+             * 
533
+             * &lt;pre&gt;
534
+             * &amp;lt;complexType&amp;gt;
535
+             *   &amp;lt;complexContent&amp;gt;
536
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
537
+             *       &amp;lt;sequence&amp;gt;
538
+             *         &amp;lt;element name="CodigoDeSucursal" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
539
+             *         &amp;lt;element name="NombredeSucursal" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
540
+             *       &amp;lt;/sequence&amp;gt;
541
+             *     &amp;lt;/restriction&amp;gt;
542
+             *   &amp;lt;/complexContent&amp;gt;
543
+             * &amp;lt;/complexType&amp;gt;
544
+             * &lt;/pre&gt;
545
+             * 
546
+             * 
547
+             */
548
+            @XmlAccessorType(XmlAccessType.FIELD)
549
+            @XmlType(name = "", propOrder = {
550
+                "codigoDeSucursal",
551
+                "nombredeSucursal"
552
+            })
553
+            public static class Sucursal {
554
+
555
+                @XmlElement(name = "CodigoDeSucursal")
556
+                protected long codigoDeSucursal;
557
+                @XmlElement(name = "NombredeSucursal", required = true)
558
+                protected String nombredeSucursal;
559
+
560
+                /**
561
+                 * Obtiene el valor de la propiedad codigoDeSucursal.
562
+                 * 
563
+                 */
564
+                public long getCodigoDeSucursal() {
565
+                    return codigoDeSucursal;
566
+                }
567
+
568
+                /**
569
+                 * Define el valor de la propiedad codigoDeSucursal.
570
+                 * 
571
+                 */
572
+                public void setCodigoDeSucursal(long value) {
573
+                    this.codigoDeSucursal = value;
574
+                }
575
+
576
+                /**
577
+                 * Obtiene el valor de la propiedad nombredeSucursal.
578
+                 * 
579
+                 * @return
580
+                 *     possible object is
581
+                 *     {@link String }
582
+                 *     
583
+                 */
584
+                public String getNombredeSucursal() {
585
+                    return nombredeSucursal;
586
+                }
587
+
588
+                /**
589
+                 * Define el valor de la propiedad nombredeSucursal.
590
+                 * 
591
+                 * @param value
592
+                 *     allowed object is
593
+                 *     {@link String }
594
+                 *     
595
+                 */
596
+                public void setNombredeSucursal(String value) {
597
+                    this.nombredeSucursal = value;
598
+                }
599
+
600
+            }
601
+
602
+        }
603
+
604
+    }
605
+
606
+}

+ 416 - 0
src/GenesisResponse/DeleteUserResponse.java 查看文件

@@ -0,0 +1,416 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 03:01:58 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_DeleteUserResponse;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="Status"&amp;gt;
34
+ *                     &amp;lt;complexType&amp;gt;
35
+ *                       &amp;lt;complexContent&amp;gt;
36
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
37
+ *                           &amp;lt;sequence&amp;gt;
38
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
39
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
40
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
41
+ *                               &amp;lt;complexType&amp;gt;
42
+ *                                 &amp;lt;complexContent&amp;gt;
43
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
44
+ *                                     &amp;lt;sequence&amp;gt;
45
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
46
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
47
+ *                                     &amp;lt;/sequence&amp;gt;
48
+ *                                   &amp;lt;/restriction&amp;gt;
49
+ *                                 &amp;lt;/complexContent&amp;gt;
50
+ *                               &amp;lt;/complexType&amp;gt;
51
+ *                             &amp;lt;/element&amp;gt;
52
+ *                           &amp;lt;/sequence&amp;gt;
53
+ *                         &amp;lt;/restriction&amp;gt;
54
+ *                       &amp;lt;/complexContent&amp;gt;
55
+ *                     &amp;lt;/complexType&amp;gt;
56
+ *                   &amp;lt;/element&amp;gt;
57
+ *                   &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
58
+ *                 &amp;lt;/sequence&amp;gt;
59
+ *               &amp;lt;/restriction&amp;gt;
60
+ *             &amp;lt;/complexContent&amp;gt;
61
+ *           &amp;lt;/complexType&amp;gt;
62
+ *         &amp;lt;/element&amp;gt;
63
+ *       &amp;lt;/sequence&amp;gt;
64
+ *     &amp;lt;/restriction&amp;gt;
65
+ *   &amp;lt;/complexContent&amp;gt;
66
+ * &amp;lt;/complexType&amp;gt;
67
+ * &lt;/pre&gt;
68
+ * 
69
+ * 
70
+ */
71
+@XmlAccessorType(XmlAccessType.FIELD)
72
+@XmlType(name = "", propOrder = {
73
+    "bankSvcRs"
74
+})
75
+@XmlRootElement(name = "Genesis")
76
+public class DeleteUserResponse {
77
+
78
+    @XmlElement(name = "BankSvcRs", required = true)
79
+    protected DeleteUserResponse.BankSvcRs bankSvcRs;
80
+
81
+    /**
82
+     * Obtiene el valor de la propiedad bankSvcRs.
83
+     * 
84
+     * @return
85
+     *     possible object is
86
+     *     {@link Genesis.BankSvcRs }
87
+     *     
88
+     */
89
+    public DeleteUserResponse.BankSvcRs getBankSvcRs() {
90
+        return bankSvcRs;
91
+    }
92
+
93
+    /**
94
+     * Define el valor de la propiedad bankSvcRs.
95
+     * 
96
+     * @param value
97
+     *     allowed object is
98
+     *     {@link Genesis.BankSvcRs }
99
+     *     
100
+     */
101
+    public void setBankSvcRs(DeleteUserResponse.BankSvcRs value) {
102
+        this.bankSvcRs = value;
103
+    }
104
+
105
+
106
+    /**
107
+     * &lt;p&gt;Clase Java para anonymous complex type.
108
+     * 
109
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
110
+     * 
111
+     * &lt;pre&gt;
112
+     * &amp;lt;complexType&amp;gt;
113
+     *   &amp;lt;complexContent&amp;gt;
114
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
115
+     *       &amp;lt;sequence&amp;gt;
116
+     *         &amp;lt;element name="Status"&amp;gt;
117
+     *           &amp;lt;complexType&amp;gt;
118
+     *             &amp;lt;complexContent&amp;gt;
119
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
120
+     *                 &amp;lt;sequence&amp;gt;
121
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
122
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
123
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
124
+     *                     &amp;lt;complexType&amp;gt;
125
+     *                       &amp;lt;complexContent&amp;gt;
126
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
127
+     *                           &amp;lt;sequence&amp;gt;
128
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
129
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
130
+     *                           &amp;lt;/sequence&amp;gt;
131
+     *                         &amp;lt;/restriction&amp;gt;
132
+     *                       &amp;lt;/complexContent&amp;gt;
133
+     *                     &amp;lt;/complexType&amp;gt;
134
+     *                   &amp;lt;/element&amp;gt;
135
+     *                 &amp;lt;/sequence&amp;gt;
136
+     *               &amp;lt;/restriction&amp;gt;
137
+     *             &amp;lt;/complexContent&amp;gt;
138
+     *           &amp;lt;/complexType&amp;gt;
139
+     *         &amp;lt;/element&amp;gt;
140
+     *         &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
141
+     *       &amp;lt;/sequence&amp;gt;
142
+     *     &amp;lt;/restriction&amp;gt;
143
+     *   &amp;lt;/complexContent&amp;gt;
144
+     * &amp;lt;/complexType&amp;gt;
145
+     * &lt;/pre&gt;
146
+     * 
147
+     * 
148
+     */
149
+    @XmlAccessorType(XmlAccessType.FIELD)
150
+    @XmlType(name = "", propOrder = {
151
+        "status",
152
+        "wsRs"
153
+    })
154
+    public static class BankSvcRs {
155
+
156
+        @XmlElement(name = "Status", required = true)
157
+        protected DeleteUserResponse.BankSvcRs.Status status;
158
+        @XmlElement(name = "WSRs", required = true)
159
+        protected String wsRs;
160
+
161
+        /**
162
+         * Obtiene el valor de la propiedad status.
163
+         * 
164
+         * @return
165
+         *     possible object is
166
+         *     {@link Genesis.BankSvcRs.Status }
167
+         *     
168
+         */
169
+        public DeleteUserResponse.BankSvcRs.Status getStatus() {
170
+            return status;
171
+        }
172
+
173
+        /**
174
+         * Define el valor de la propiedad status.
175
+         * 
176
+         * @param value
177
+         *     allowed object is
178
+         *     {@link Genesis.BankSvcRs.Status }
179
+         *     
180
+         */
181
+        public void setStatus(DeleteUserResponse.BankSvcRs.Status value) {
182
+            this.status = value;
183
+        }
184
+
185
+        /**
186
+         * Obtiene el valor de la propiedad wsRs.
187
+         * 
188
+         * @return
189
+         *     possible object is
190
+         *     {@link String }
191
+         *     
192
+         */
193
+        public String getWSRs() {
194
+            return wsRs;
195
+        }
196
+
197
+        /**
198
+         * Define el valor de la propiedad wsRs.
199
+         * 
200
+         * @param value
201
+         *     allowed object is
202
+         *     {@link String }
203
+         *     
204
+         */
205
+        public void setWSRs(String value) {
206
+            this.wsRs = value;
207
+        }
208
+
209
+
210
+        /**
211
+         * &lt;p&gt;Clase Java para anonymous complex type.
212
+         * 
213
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
214
+         * 
215
+         * &lt;pre&gt;
216
+         * &amp;lt;complexType&amp;gt;
217
+         *   &amp;lt;complexContent&amp;gt;
218
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
219
+         *       &amp;lt;sequence&amp;gt;
220
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
221
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
222
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
223
+         *           &amp;lt;complexType&amp;gt;
224
+         *             &amp;lt;complexContent&amp;gt;
225
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
226
+         *                 &amp;lt;sequence&amp;gt;
227
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
228
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
229
+         *                 &amp;lt;/sequence&amp;gt;
230
+         *               &amp;lt;/restriction&amp;gt;
231
+         *             &amp;lt;/complexContent&amp;gt;
232
+         *           &amp;lt;/complexType&amp;gt;
233
+         *         &amp;lt;/element&amp;gt;
234
+         *       &amp;lt;/sequence&amp;gt;
235
+         *     &amp;lt;/restriction&amp;gt;
236
+         *   &amp;lt;/complexContent&amp;gt;
237
+         * &amp;lt;/complexType&amp;gt;
238
+         * &lt;/pre&gt;
239
+         * 
240
+         * 
241
+         */
242
+        @XmlAccessorType(XmlAccessType.FIELD)
243
+        @XmlType(name = "", propOrder = {
244
+            "statusCode",
245
+            "statusDesc",
246
+            "additionalStatus"
247
+        })
248
+        public static class Status {
249
+
250
+            @XmlElement(name = "StatusCode", required = true)
251
+            protected String statusCode;
252
+            @XmlElement(name = "StatusDesc", required = true)
253
+            protected String statusDesc;
254
+            @XmlElement(name = "AdditionalStatus", required = true)
255
+            protected DeleteUserResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
256
+
257
+            /**
258
+             * Obtiene el valor de la propiedad statusCode.
259
+             * 
260
+             * @return
261
+             *     possible object is
262
+             *     {@link String }
263
+             *     
264
+             */
265
+            public String getStatusCode() {
266
+                return statusCode;
267
+            }
268
+
269
+            /**
270
+             * Define el valor de la propiedad statusCode.
271
+             * 
272
+             * @param value
273
+             *     allowed object is
274
+             *     {@link String }
275
+             *     
276
+             */
277
+            public void setStatusCode(String value) {
278
+                this.statusCode = value;
279
+            }
280
+
281
+            /**
282
+             * Obtiene el valor de la propiedad statusDesc.
283
+             * 
284
+             * @return
285
+             *     possible object is
286
+             *     {@link String }
287
+             *     
288
+             */
289
+            public String getStatusDesc() {
290
+                return statusDesc;
291
+            }
292
+
293
+            /**
294
+             * Define el valor de la propiedad statusDesc.
295
+             * 
296
+             * @param value
297
+             *     allowed object is
298
+             *     {@link String }
299
+             *     
300
+             */
301
+            public void setStatusDesc(String value) {
302
+                this.statusDesc = value;
303
+            }
304
+
305
+            /**
306
+             * Obtiene el valor de la propiedad additionalStatus.
307
+             * 
308
+             * @return
309
+             *     possible object is
310
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
311
+             *     
312
+             */
313
+            public DeleteUserResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
314
+                return additionalStatus;
315
+            }
316
+
317
+            /**
318
+             * Define el valor de la propiedad additionalStatus.
319
+             * 
320
+             * @param value
321
+             *     allowed object is
322
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
323
+             *     
324
+             */
325
+            public void setAdditionalStatus(DeleteUserResponse.BankSvcRs.Status.AdditionalStatus value) {
326
+                this.additionalStatus = value;
327
+            }
328
+
329
+
330
+            /**
331
+             * &lt;p&gt;Clase Java para anonymous complex type.
332
+             * 
333
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
334
+             * 
335
+             * &lt;pre&gt;
336
+             * &amp;lt;complexType&amp;gt;
337
+             *   &amp;lt;complexContent&amp;gt;
338
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
339
+             *       &amp;lt;sequence&amp;gt;
340
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
341
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
342
+             *       &amp;lt;/sequence&amp;gt;
343
+             *     &amp;lt;/restriction&amp;gt;
344
+             *   &amp;lt;/complexContent&amp;gt;
345
+             * &amp;lt;/complexType&amp;gt;
346
+             * &lt;/pre&gt;
347
+             * 
348
+             * 
349
+             */
350
+            @XmlAccessorType(XmlAccessType.FIELD)
351
+            @XmlType(name = "", propOrder = {
352
+                "statusCode",
353
+                "statusDesc"
354
+            })
355
+            public static class AdditionalStatus {
356
+
357
+                @XmlElement(name = "StatusCode", required = true)
358
+                protected String statusCode;
359
+                @XmlElement(name = "StatusDesc", required = true)
360
+                protected String statusDesc;
361
+
362
+                /**
363
+                 * Obtiene el valor de la propiedad statusCode.
364
+                 * 
365
+                 * @return
366
+                 *     possible object is
367
+                 *     {@link String }
368
+                 *     
369
+                 */
370
+                public String getStatusCode() {
371
+                    return statusCode;
372
+                }
373
+
374
+                /**
375
+                 * Define el valor de la propiedad statusCode.
376
+                 * 
377
+                 * @param value
378
+                 *     allowed object is
379
+                 *     {@link String }
380
+                 *     
381
+                 */
382
+                public void setStatusCode(String value) {
383
+                    this.statusCode = value;
384
+                }
385
+
386
+                /**
387
+                 * Obtiene el valor de la propiedad statusDesc.
388
+                 * 
389
+                 * @return
390
+                 *     possible object is
391
+                 *     {@link String }
392
+                 *     
393
+                 */
394
+                public String getStatusDesc() {
395
+                    return statusDesc;
396
+                }
397
+
398
+                /**
399
+                 * Define el valor de la propiedad statusDesc.
400
+                 * 
401
+                 * @param value
402
+                 *     allowed object is
403
+                 *     {@link String }
404
+                 *     
405
+                 */
406
+                public void setStatusDesc(String value) {
407
+                    this.statusDesc = value;
408
+                }
409
+
410
+            }
411
+
412
+        }
413
+
414
+    }
415
+
416
+}

+ 606 - 0
src/GenesisResponse/RoleListResponse.java 查看文件

@@ -0,0 +1,606 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 03:04:38 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_RoleListResponse;
10
+
11
+import java.util.ArrayList;
12
+import java.util.List;
13
+import javax.xml.bind.annotation.XmlAccessType;
14
+import javax.xml.bind.annotation.XmlAccessorType;
15
+import javax.xml.bind.annotation.XmlElement;
16
+import javax.xml.bind.annotation.XmlRootElement;
17
+import javax.xml.bind.annotation.XmlType;
18
+
19
+
20
+/**
21
+ * &lt;p&gt;Clase Java para anonymous complex type.
22
+ * 
23
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
24
+ * 
25
+ * &lt;pre&gt;
26
+ * &amp;lt;complexType&amp;gt;
27
+ *   &amp;lt;complexContent&amp;gt;
28
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
29
+ *       &amp;lt;sequence&amp;gt;
30
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
31
+ *           &amp;lt;complexType&amp;gt;
32
+ *             &amp;lt;complexContent&amp;gt;
33
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
34
+ *                 &amp;lt;sequence&amp;gt;
35
+ *                   &amp;lt;element name="Status"&amp;gt;
36
+ *                     &amp;lt;complexType&amp;gt;
37
+ *                       &amp;lt;complexContent&amp;gt;
38
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
39
+ *                           &amp;lt;sequence&amp;gt;
40
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
41
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
42
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
43
+ *                               &amp;lt;complexType&amp;gt;
44
+ *                                 &amp;lt;complexContent&amp;gt;
45
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
46
+ *                                     &amp;lt;sequence&amp;gt;
47
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
48
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
49
+ *                                     &amp;lt;/sequence&amp;gt;
50
+ *                                   &amp;lt;/restriction&amp;gt;
51
+ *                                 &amp;lt;/complexContent&amp;gt;
52
+ *                               &amp;lt;/complexType&amp;gt;
53
+ *                             &amp;lt;/element&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                   &amp;lt;element name="WSRs"&amp;gt;
60
+ *                     &amp;lt;complexType&amp;gt;
61
+ *                       &amp;lt;complexContent&amp;gt;
62
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
63
+ *                           &amp;lt;sequence&amp;gt;
64
+ *                             &amp;lt;element name="Role" maxOccurs="unbounded" minOccurs="0"&amp;gt;
65
+ *                               &amp;lt;complexType&amp;gt;
66
+ *                                 &amp;lt;complexContent&amp;gt;
67
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                                     &amp;lt;sequence&amp;gt;
69
+ *                                       &amp;lt;element name="IdRole" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                                       &amp;lt;element name="NombredelRol" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
71
+ *                                     &amp;lt;/sequence&amp;gt;
72
+ *                                   &amp;lt;/restriction&amp;gt;
73
+ *                                 &amp;lt;/complexContent&amp;gt;
74
+ *                               &amp;lt;/complexType&amp;gt;
75
+ *                             &amp;lt;/element&amp;gt;
76
+ *                           &amp;lt;/sequence&amp;gt;
77
+ *                         &amp;lt;/restriction&amp;gt;
78
+ *                       &amp;lt;/complexContent&amp;gt;
79
+ *                     &amp;lt;/complexType&amp;gt;
80
+ *                   &amp;lt;/element&amp;gt;
81
+ *                 &amp;lt;/sequence&amp;gt;
82
+ *               &amp;lt;/restriction&amp;gt;
83
+ *             &amp;lt;/complexContent&amp;gt;
84
+ *           &amp;lt;/complexType&amp;gt;
85
+ *         &amp;lt;/element&amp;gt;
86
+ *       &amp;lt;/sequence&amp;gt;
87
+ *     &amp;lt;/restriction&amp;gt;
88
+ *   &amp;lt;/complexContent&amp;gt;
89
+ * &amp;lt;/complexType&amp;gt;
90
+ * &lt;/pre&gt;
91
+ * 
92
+ * 
93
+ */
94
+@XmlAccessorType(XmlAccessType.FIELD)
95
+@XmlType(name = "", propOrder = {
96
+    "bankSvcRs"
97
+})
98
+@XmlRootElement(name = "Genesis")
99
+public class RoleListResponse {
100
+
101
+    @XmlElement(name = "BankSvcRs", required = true)
102
+    protected RoleListResponse.BankSvcRs bankSvcRs;
103
+
104
+    /**
105
+     * Obtiene el valor de la propiedad bankSvcRs.
106
+     * 
107
+     * @return
108
+     *     possible object is
109
+     *     {@link Genesis.BankSvcRs }
110
+     *     
111
+     */
112
+    public RoleListResponse.BankSvcRs getBankSvcRs() {
113
+        return bankSvcRs;
114
+    }
115
+
116
+    /**
117
+     * Define el valor de la propiedad bankSvcRs.
118
+     * 
119
+     * @param value
120
+     *     allowed object is
121
+     *     {@link Genesis.BankSvcRs }
122
+     *     
123
+     */
124
+    public void setBankSvcRs(RoleListResponse.BankSvcRs value) {
125
+        this.bankSvcRs = value;
126
+    }
127
+
128
+
129
+    /**
130
+     * &lt;p&gt;Clase Java para anonymous complex type.
131
+     * 
132
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
133
+     * 
134
+     * &lt;pre&gt;
135
+     * &amp;lt;complexType&amp;gt;
136
+     *   &amp;lt;complexContent&amp;gt;
137
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
138
+     *       &amp;lt;sequence&amp;gt;
139
+     *         &amp;lt;element name="Status"&amp;gt;
140
+     *           &amp;lt;complexType&amp;gt;
141
+     *             &amp;lt;complexContent&amp;gt;
142
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
143
+     *                 &amp;lt;sequence&amp;gt;
144
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
145
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
146
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
147
+     *                     &amp;lt;complexType&amp;gt;
148
+     *                       &amp;lt;complexContent&amp;gt;
149
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
150
+     *                           &amp;lt;sequence&amp;gt;
151
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
152
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
153
+     *                           &amp;lt;/sequence&amp;gt;
154
+     *                         &amp;lt;/restriction&amp;gt;
155
+     *                       &amp;lt;/complexContent&amp;gt;
156
+     *                     &amp;lt;/complexType&amp;gt;
157
+     *                   &amp;lt;/element&amp;gt;
158
+     *                 &amp;lt;/sequence&amp;gt;
159
+     *               &amp;lt;/restriction&amp;gt;
160
+     *             &amp;lt;/complexContent&amp;gt;
161
+     *           &amp;lt;/complexType&amp;gt;
162
+     *         &amp;lt;/element&amp;gt;
163
+     *         &amp;lt;element name="WSRs"&amp;gt;
164
+     *           &amp;lt;complexType&amp;gt;
165
+     *             &amp;lt;complexContent&amp;gt;
166
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
167
+     *                 &amp;lt;sequence&amp;gt;
168
+     *                   &amp;lt;element name="Role" maxOccurs="unbounded" minOccurs="0"&amp;gt;
169
+     *                     &amp;lt;complexType&amp;gt;
170
+     *                       &amp;lt;complexContent&amp;gt;
171
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
172
+     *                           &amp;lt;sequence&amp;gt;
173
+     *                             &amp;lt;element name="IdRole" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
174
+     *                             &amp;lt;element name="NombredelRol" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
175
+     *                           &amp;lt;/sequence&amp;gt;
176
+     *                         &amp;lt;/restriction&amp;gt;
177
+     *                       &amp;lt;/complexContent&amp;gt;
178
+     *                     &amp;lt;/complexType&amp;gt;
179
+     *                   &amp;lt;/element&amp;gt;
180
+     *                 &amp;lt;/sequence&amp;gt;
181
+     *               &amp;lt;/restriction&amp;gt;
182
+     *             &amp;lt;/complexContent&amp;gt;
183
+     *           &amp;lt;/complexType&amp;gt;
184
+     *         &amp;lt;/element&amp;gt;
185
+     *       &amp;lt;/sequence&amp;gt;
186
+     *     &amp;lt;/restriction&amp;gt;
187
+     *   &amp;lt;/complexContent&amp;gt;
188
+     * &amp;lt;/complexType&amp;gt;
189
+     * &lt;/pre&gt;
190
+     * 
191
+     * 
192
+     */
193
+    @XmlAccessorType(XmlAccessType.FIELD)
194
+    @XmlType(name = "", propOrder = {
195
+        "status",
196
+        "wsRs"
197
+    })
198
+    public static class BankSvcRs {
199
+
200
+        @XmlElement(name = "Status", required = true)
201
+        protected RoleListResponse.BankSvcRs.Status status;
202
+        @XmlElement(name = "WSRs", required = true)
203
+        protected RoleListResponse.BankSvcRs.WSRs wsRs;
204
+
205
+        /**
206
+         * Obtiene el valor de la propiedad status.
207
+         * 
208
+         * @return
209
+         *     possible object is
210
+         *     {@link Genesis.BankSvcRs.Status }
211
+         *     
212
+         */
213
+        public RoleListResponse.BankSvcRs.Status getStatus() {
214
+            return status;
215
+        }
216
+
217
+        /**
218
+         * Define el valor de la propiedad status.
219
+         * 
220
+         * @param value
221
+         *     allowed object is
222
+         *     {@link Genesis.BankSvcRs.Status }
223
+         *     
224
+         */
225
+        public void setStatus(RoleListResponse.BankSvcRs.Status value) {
226
+            this.status = value;
227
+        }
228
+
229
+        /**
230
+         * Obtiene el valor de la propiedad wsRs.
231
+         * 
232
+         * @return
233
+         *     possible object is
234
+         *     {@link Genesis.BankSvcRs.WSRs }
235
+         *     
236
+         */
237
+        public RoleListResponse.BankSvcRs.WSRs getWSRs() {
238
+            return wsRs;
239
+        }
240
+
241
+        /**
242
+         * Define el valor de la propiedad wsRs.
243
+         * 
244
+         * @param value
245
+         *     allowed object is
246
+         *     {@link Genesis.BankSvcRs.WSRs }
247
+         *     
248
+         */
249
+        public void setWSRs(RoleListResponse.BankSvcRs.WSRs value) {
250
+            this.wsRs = value;
251
+        }
252
+
253
+
254
+        /**
255
+         * &lt;p&gt;Clase Java para anonymous complex type.
256
+         * 
257
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
258
+         * 
259
+         * &lt;pre&gt;
260
+         * &amp;lt;complexType&amp;gt;
261
+         *   &amp;lt;complexContent&amp;gt;
262
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
263
+         *       &amp;lt;sequence&amp;gt;
264
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
265
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
266
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
267
+         *           &amp;lt;complexType&amp;gt;
268
+         *             &amp;lt;complexContent&amp;gt;
269
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
270
+         *                 &amp;lt;sequence&amp;gt;
271
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
272
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
273
+         *                 &amp;lt;/sequence&amp;gt;
274
+         *               &amp;lt;/restriction&amp;gt;
275
+         *             &amp;lt;/complexContent&amp;gt;
276
+         *           &amp;lt;/complexType&amp;gt;
277
+         *         &amp;lt;/element&amp;gt;
278
+         *       &amp;lt;/sequence&amp;gt;
279
+         *     &amp;lt;/restriction&amp;gt;
280
+         *   &amp;lt;/complexContent&amp;gt;
281
+         * &amp;lt;/complexType&amp;gt;
282
+         * &lt;/pre&gt;
283
+         * 
284
+         * 
285
+         */
286
+        @XmlAccessorType(XmlAccessType.FIELD)
287
+        @XmlType(name = "", propOrder = {
288
+            "statusCode",
289
+            "statusDesc",
290
+            "additionalStatus"
291
+        })
292
+        public static class Status {
293
+
294
+            @XmlElement(name = "StatusCode", required = true)
295
+            protected String statusCode;
296
+            @XmlElement(name = "StatusDesc", required = true)
297
+            protected String statusDesc;
298
+            @XmlElement(name = "AdditionalStatus", required = true)
299
+            protected RoleListResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
300
+
301
+            /**
302
+             * Obtiene el valor de la propiedad statusCode.
303
+             * 
304
+             * @return
305
+             *     possible object is
306
+             *     {@link String }
307
+             *     
308
+             */
309
+            public String getStatusCode() {
310
+                return statusCode;
311
+            }
312
+
313
+            /**
314
+             * Define el valor de la propiedad statusCode.
315
+             * 
316
+             * @param value
317
+             *     allowed object is
318
+             *     {@link String }
319
+             *     
320
+             */
321
+            public void setStatusCode(String value) {
322
+                this.statusCode = value;
323
+            }
324
+
325
+            /**
326
+             * Obtiene el valor de la propiedad statusDesc.
327
+             * 
328
+             * @return
329
+             *     possible object is
330
+             *     {@link String }
331
+             *     
332
+             */
333
+            public String getStatusDesc() {
334
+                return statusDesc;
335
+            }
336
+
337
+            /**
338
+             * Define el valor de la propiedad statusDesc.
339
+             * 
340
+             * @param value
341
+             *     allowed object is
342
+             *     {@link String }
343
+             *     
344
+             */
345
+            public void setStatusDesc(String value) {
346
+                this.statusDesc = value;
347
+            }
348
+
349
+            /**
350
+             * Obtiene el valor de la propiedad additionalStatus.
351
+             * 
352
+             * @return
353
+             *     possible object is
354
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
355
+             *     
356
+             */
357
+            public RoleListResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
358
+                return additionalStatus;
359
+            }
360
+
361
+            /**
362
+             * Define el valor de la propiedad additionalStatus.
363
+             * 
364
+             * @param value
365
+             *     allowed object is
366
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
367
+             *     
368
+             */
369
+            public void setAdditionalStatus(RoleListResponse.BankSvcRs.Status.AdditionalStatus value) {
370
+                this.additionalStatus = value;
371
+            }
372
+
373
+
374
+            /**
375
+             * &lt;p&gt;Clase Java para anonymous complex type.
376
+             * 
377
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
378
+             * 
379
+             * &lt;pre&gt;
380
+             * &amp;lt;complexType&amp;gt;
381
+             *   &amp;lt;complexContent&amp;gt;
382
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
383
+             *       &amp;lt;sequence&amp;gt;
384
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
385
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
386
+             *       &amp;lt;/sequence&amp;gt;
387
+             *     &amp;lt;/restriction&amp;gt;
388
+             *   &amp;lt;/complexContent&amp;gt;
389
+             * &amp;lt;/complexType&amp;gt;
390
+             * &lt;/pre&gt;
391
+             * 
392
+             * 
393
+             */
394
+            @XmlAccessorType(XmlAccessType.FIELD)
395
+            @XmlType(name = "", propOrder = {
396
+                "statusCode",
397
+                "statusDesc"
398
+            })
399
+            public static class AdditionalStatus {
400
+
401
+                @XmlElement(name = "StatusCode", required = true)
402
+                protected String statusCode;
403
+                @XmlElement(name = "StatusDesc", required = true)
404
+                protected String statusDesc;
405
+
406
+                /**
407
+                 * Obtiene el valor de la propiedad statusCode.
408
+                 * 
409
+                 * @return
410
+                 *     possible object is
411
+                 *     {@link String }
412
+                 *     
413
+                 */
414
+                public String getStatusCode() {
415
+                    return statusCode;
416
+                }
417
+
418
+                /**
419
+                 * Define el valor de la propiedad statusCode.
420
+                 * 
421
+                 * @param value
422
+                 *     allowed object is
423
+                 *     {@link String }
424
+                 *     
425
+                 */
426
+                public void setStatusCode(String value) {
427
+                    this.statusCode = value;
428
+                }
429
+
430
+                /**
431
+                 * Obtiene el valor de la propiedad statusDesc.
432
+                 * 
433
+                 * @return
434
+                 *     possible object is
435
+                 *     {@link String }
436
+                 *     
437
+                 */
438
+                public String getStatusDesc() {
439
+                    return statusDesc;
440
+                }
441
+
442
+                /**
443
+                 * Define el valor de la propiedad statusDesc.
444
+                 * 
445
+                 * @param value
446
+                 *     allowed object is
447
+                 *     {@link String }
448
+                 *     
449
+                 */
450
+                public void setStatusDesc(String value) {
451
+                    this.statusDesc = value;
452
+                }
453
+
454
+            }
455
+
456
+        }
457
+
458
+
459
+        /**
460
+         * &lt;p&gt;Clase Java para anonymous complex type.
461
+         * 
462
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
463
+         * 
464
+         * &lt;pre&gt;
465
+         * &amp;lt;complexType&amp;gt;
466
+         *   &amp;lt;complexContent&amp;gt;
467
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
468
+         *       &amp;lt;sequence&amp;gt;
469
+         *         &amp;lt;element name="Role" maxOccurs="unbounded" minOccurs="0"&amp;gt;
470
+         *           &amp;lt;complexType&amp;gt;
471
+         *             &amp;lt;complexContent&amp;gt;
472
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
473
+         *                 &amp;lt;sequence&amp;gt;
474
+         *                   &amp;lt;element name="IdRole" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
475
+         *                   &amp;lt;element name="NombredelRol" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
476
+         *                 &amp;lt;/sequence&amp;gt;
477
+         *               &amp;lt;/restriction&amp;gt;
478
+         *             &amp;lt;/complexContent&amp;gt;
479
+         *           &amp;lt;/complexType&amp;gt;
480
+         *         &amp;lt;/element&amp;gt;
481
+         *       &amp;lt;/sequence&amp;gt;
482
+         *     &amp;lt;/restriction&amp;gt;
483
+         *   &amp;lt;/complexContent&amp;gt;
484
+         * &amp;lt;/complexType&amp;gt;
485
+         * &lt;/pre&gt;
486
+         * 
487
+         * 
488
+         */
489
+        @XmlAccessorType(XmlAccessType.FIELD)
490
+        @XmlType(name = "", propOrder = {
491
+            "role"
492
+        })
493
+        public static class WSRs {
494
+
495
+            @XmlElement(name = "Role")
496
+            protected List<RoleListResponse.BankSvcRs.WSRs.Role> role;
497
+
498
+            /**
499
+             * Gets the value of the role property.
500
+             * 
501
+             * &lt;p&gt;
502
+             * This accessor method returns a reference to the live list,
503
+             * not a snapshot. Therefore any modification you make to the
504
+             * returned list will be present inside the JAXB object.
505
+             * This is why there is not a &lt;CODE&gt;set&lt;/CODE&gt; method for the role property.
506
+             * 
507
+             * &lt;p&gt;
508
+             * For example, to add a new item, do as follows:
509
+             * &lt;pre&gt;
510
+             *    getRole().add(newItem);
511
+             * &lt;/pre&gt;
512
+             * 
513
+             * 
514
+             * &lt;p&gt;
515
+             * Objects of the following type(s) are allowed in the list
516
+             * {@link Genesis.BankSvcRs.WSRs.Role }
517
+             * 
518
+             * 
519
+             */
520
+            public List<RoleListResponse.BankSvcRs.WSRs.Role> getRole() {
521
+                if (role == null) {
522
+                    role = new ArrayList<RoleListResponse.BankSvcRs.WSRs.Role>();
523
+                }
524
+                return this.role;
525
+            }
526
+
527
+
528
+            /**
529
+             * &lt;p&gt;Clase Java para anonymous complex type.
530
+             * 
531
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
532
+             * 
533
+             * &lt;pre&gt;
534
+             * &amp;lt;complexType&amp;gt;
535
+             *   &amp;lt;complexContent&amp;gt;
536
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
537
+             *       &amp;lt;sequence&amp;gt;
538
+             *         &amp;lt;element name="IdRole" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
539
+             *         &amp;lt;element name="NombredelRol" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
540
+             *       &amp;lt;/sequence&amp;gt;
541
+             *     &amp;lt;/restriction&amp;gt;
542
+             *   &amp;lt;/complexContent&amp;gt;
543
+             * &amp;lt;/complexType&amp;gt;
544
+             * &lt;/pre&gt;
545
+             * 
546
+             * 
547
+             */
548
+            @XmlAccessorType(XmlAccessType.FIELD)
549
+            @XmlType(name = "", propOrder = {
550
+                "idRole",
551
+                "nombredelRol"
552
+            })
553
+            public static class Role {
554
+
555
+                @XmlElement(name = "IdRole")
556
+                protected long idRole;
557
+                @XmlElement(name = "NombredelRol", required = true)
558
+                protected String nombredelRol;
559
+
560
+                /**
561
+                 * Obtiene el valor de la propiedad idRole.
562
+                 * 
563
+                 */
564
+                public long getIdRole() {
565
+                    return idRole;
566
+                }
567
+
568
+                /**
569
+                 * Define el valor de la propiedad idRole.
570
+                 * 
571
+                 */
572
+                public void setIdRole(long value) {
573
+                    this.idRole = value;
574
+                }
575
+
576
+                /**
577
+                 * Obtiene el valor de la propiedad nombredelRol.
578
+                 * 
579
+                 * @return
580
+                 *     possible object is
581
+                 *     {@link String }
582
+                 *     
583
+                 */
584
+                public String getNombredelRol() {
585
+                    return nombredelRol;
586
+                }
587
+
588
+                /**
589
+                 * Define el valor de la propiedad nombredelRol.
590
+                 * 
591
+                 * @param value
592
+                 *     allowed object is
593
+                 *     {@link String }
594
+                 *     
595
+                 */
596
+                public void setNombredelRol(String value) {
597
+                    this.nombredelRol = value;
598
+                }
599
+
600
+            }
601
+
602
+        }
603
+
604
+    }
605
+
606
+}

+ 482 - 0
src/GenesisResponse/UpdateUserResponse.java 查看文件

@@ -0,0 +1,482 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 03:09:45 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_UpdateUserResponse;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="Status"&amp;gt;
34
+ *                     &amp;lt;complexType&amp;gt;
35
+ *                       &amp;lt;complexContent&amp;gt;
36
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
37
+ *                           &amp;lt;sequence&amp;gt;
38
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
39
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
40
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
41
+ *                               &amp;lt;complexType&amp;gt;
42
+ *                                 &amp;lt;complexContent&amp;gt;
43
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
44
+ *                                     &amp;lt;sequence&amp;gt;
45
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
46
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
47
+ *                                     &amp;lt;/sequence&amp;gt;
48
+ *                                   &amp;lt;/restriction&amp;gt;
49
+ *                                 &amp;lt;/complexContent&amp;gt;
50
+ *                               &amp;lt;/complexType&amp;gt;
51
+ *                             &amp;lt;/element&amp;gt;
52
+ *                           &amp;lt;/sequence&amp;gt;
53
+ *                         &amp;lt;/restriction&amp;gt;
54
+ *                       &amp;lt;/complexContent&amp;gt;
55
+ *                     &amp;lt;/complexType&amp;gt;
56
+ *                   &amp;lt;/element&amp;gt;
57
+ *                   &amp;lt;element name="WSRs"&amp;gt;
58
+ *                     &amp;lt;complexType&amp;gt;
59
+ *                       &amp;lt;complexContent&amp;gt;
60
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
61
+ *                           &amp;lt;sequence&amp;gt;
62
+ *                             &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
63
+ *                           &amp;lt;/sequence&amp;gt;
64
+ *                         &amp;lt;/restriction&amp;gt;
65
+ *                       &amp;lt;/complexContent&amp;gt;
66
+ *                     &amp;lt;/complexType&amp;gt;
67
+ *                   &amp;lt;/element&amp;gt;
68
+ *                 &amp;lt;/sequence&amp;gt;
69
+ *               &amp;lt;/restriction&amp;gt;
70
+ *             &amp;lt;/complexContent&amp;gt;
71
+ *           &amp;lt;/complexType&amp;gt;
72
+ *         &amp;lt;/element&amp;gt;
73
+ *       &amp;lt;/sequence&amp;gt;
74
+ *     &amp;lt;/restriction&amp;gt;
75
+ *   &amp;lt;/complexContent&amp;gt;
76
+ * &amp;lt;/complexType&amp;gt;
77
+ * &lt;/pre&gt;
78
+ * 
79
+ * 
80
+ */
81
+@XmlAccessorType(XmlAccessType.FIELD)
82
+@XmlType(name = "", propOrder = {
83
+    "bankSvcRs"
84
+})
85
+@XmlRootElement(name = "Genesis")
86
+public class UpdateUserResponse {
87
+
88
+    @XmlElement(name = "BankSvcRs", required = true)
89
+    protected UpdateUserResponse.BankSvcRs bankSvcRs;
90
+
91
+    /**
92
+     * Obtiene el valor de la propiedad bankSvcRs.
93
+     * 
94
+     * @return
95
+     *     possible object is
96
+     *     {@link Genesis.BankSvcRs }
97
+     *     
98
+     */
99
+    public UpdateUserResponse.BankSvcRs getBankSvcRs() {
100
+        return bankSvcRs;
101
+    }
102
+
103
+    /**
104
+     * Define el valor de la propiedad bankSvcRs.
105
+     * 
106
+     * @param value
107
+     *     allowed object is
108
+     *     {@link Genesis.BankSvcRs }
109
+     *     
110
+     */
111
+    public void setBankSvcRs(UpdateUserResponse.BankSvcRs value) {
112
+        this.bankSvcRs = value;
113
+    }
114
+
115
+
116
+    /**
117
+     * &lt;p&gt;Clase Java para anonymous complex type.
118
+     * 
119
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
120
+     * 
121
+     * &lt;pre&gt;
122
+     * &amp;lt;complexType&amp;gt;
123
+     *   &amp;lt;complexContent&amp;gt;
124
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
125
+     *       &amp;lt;sequence&amp;gt;
126
+     *         &amp;lt;element name="Status"&amp;gt;
127
+     *           &amp;lt;complexType&amp;gt;
128
+     *             &amp;lt;complexContent&amp;gt;
129
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
130
+     *                 &amp;lt;sequence&amp;gt;
131
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
132
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
133
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
134
+     *                     &amp;lt;complexType&amp;gt;
135
+     *                       &amp;lt;complexContent&amp;gt;
136
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
137
+     *                           &amp;lt;sequence&amp;gt;
138
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
139
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
140
+     *                           &amp;lt;/sequence&amp;gt;
141
+     *                         &amp;lt;/restriction&amp;gt;
142
+     *                       &amp;lt;/complexContent&amp;gt;
143
+     *                     &amp;lt;/complexType&amp;gt;
144
+     *                   &amp;lt;/element&amp;gt;
145
+     *                 &amp;lt;/sequence&amp;gt;
146
+     *               &amp;lt;/restriction&amp;gt;
147
+     *             &amp;lt;/complexContent&amp;gt;
148
+     *           &amp;lt;/complexType&amp;gt;
149
+     *         &amp;lt;/element&amp;gt;
150
+     *         &amp;lt;element name="WSRs"&amp;gt;
151
+     *           &amp;lt;complexType&amp;gt;
152
+     *             &amp;lt;complexContent&amp;gt;
153
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
154
+     *                 &amp;lt;sequence&amp;gt;
155
+     *                   &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
156
+     *                 &amp;lt;/sequence&amp;gt;
157
+     *               &amp;lt;/restriction&amp;gt;
158
+     *             &amp;lt;/complexContent&amp;gt;
159
+     *           &amp;lt;/complexType&amp;gt;
160
+     *         &amp;lt;/element&amp;gt;
161
+     *       &amp;lt;/sequence&amp;gt;
162
+     *     &amp;lt;/restriction&amp;gt;
163
+     *   &amp;lt;/complexContent&amp;gt;
164
+     * &amp;lt;/complexType&amp;gt;
165
+     * &lt;/pre&gt;
166
+     * 
167
+     * 
168
+     */
169
+    @XmlAccessorType(XmlAccessType.FIELD)
170
+    @XmlType(name = "", propOrder = {
171
+        "status",
172
+        "wsRs"
173
+    })
174
+    public static class BankSvcRs {
175
+
176
+        @XmlElement(name = "Status", required = true)
177
+        protected UpdateUserResponse.BankSvcRs.Status status;
178
+        @XmlElement(name = "WSRs", required = true)
179
+        protected UpdateUserResponse.BankSvcRs.WSRs wsRs;
180
+
181
+        /**
182
+         * Obtiene el valor de la propiedad status.
183
+         * 
184
+         * @return
185
+         *     possible object is
186
+         *     {@link Genesis.BankSvcRs.Status }
187
+         *     
188
+         */
189
+        public UpdateUserResponse.BankSvcRs.Status getStatus() {
190
+            return status;
191
+        }
192
+
193
+        /**
194
+         * Define el valor de la propiedad status.
195
+         * 
196
+         * @param value
197
+         *     allowed object is
198
+         *     {@link Genesis.BankSvcRs.Status }
199
+         *     
200
+         */
201
+        public void setStatus(UpdateUserResponse.BankSvcRs.Status value) {
202
+            this.status = value;
203
+        }
204
+
205
+        /**
206
+         * Obtiene el valor de la propiedad wsRs.
207
+         * 
208
+         * @return
209
+         *     possible object is
210
+         *     {@link Genesis.BankSvcRs.WSRs }
211
+         *     
212
+         */
213
+        public UpdateUserResponse.BankSvcRs.WSRs getWSRs() {
214
+            return wsRs;
215
+        }
216
+
217
+        /**
218
+         * Define el valor de la propiedad wsRs.
219
+         * 
220
+         * @param value
221
+         *     allowed object is
222
+         *     {@link Genesis.BankSvcRs.WSRs }
223
+         *     
224
+         */
225
+        public void setWSRs(UpdateUserResponse.BankSvcRs.WSRs value) {
226
+            this.wsRs = value;
227
+        }
228
+
229
+
230
+        /**
231
+         * &lt;p&gt;Clase Java para anonymous complex type.
232
+         * 
233
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
234
+         * 
235
+         * &lt;pre&gt;
236
+         * &amp;lt;complexType&amp;gt;
237
+         *   &amp;lt;complexContent&amp;gt;
238
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
239
+         *       &amp;lt;sequence&amp;gt;
240
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
241
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
242
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
243
+         *           &amp;lt;complexType&amp;gt;
244
+         *             &amp;lt;complexContent&amp;gt;
245
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
246
+         *                 &amp;lt;sequence&amp;gt;
247
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
248
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
249
+         *                 &amp;lt;/sequence&amp;gt;
250
+         *               &amp;lt;/restriction&amp;gt;
251
+         *             &amp;lt;/complexContent&amp;gt;
252
+         *           &amp;lt;/complexType&amp;gt;
253
+         *         &amp;lt;/element&amp;gt;
254
+         *       &amp;lt;/sequence&amp;gt;
255
+         *     &amp;lt;/restriction&amp;gt;
256
+         *   &amp;lt;/complexContent&amp;gt;
257
+         * &amp;lt;/complexType&amp;gt;
258
+         * &lt;/pre&gt;
259
+         * 
260
+         * 
261
+         */
262
+        @XmlAccessorType(XmlAccessType.FIELD)
263
+        @XmlType(name = "", propOrder = {
264
+            "statusCode",
265
+            "statusDesc",
266
+            "additionalStatus"
267
+        })
268
+        public static class Status {
269
+
270
+            @XmlElement(name = "StatusCode", required = true)
271
+            protected String statusCode;
272
+            @XmlElement(name = "StatusDesc", required = true)
273
+            protected String statusDesc;
274
+            @XmlElement(name = "AdditionalStatus", required = true)
275
+            protected UpdateUserResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
276
+
277
+            /**
278
+             * Obtiene el valor de la propiedad statusCode.
279
+             * 
280
+             * @return
281
+             *     possible object is
282
+             *     {@link String }
283
+             *     
284
+             */
285
+            public String getStatusCode() {
286
+                return statusCode;
287
+            }
288
+
289
+            /**
290
+             * Define el valor de la propiedad statusCode.
291
+             * 
292
+             * @param value
293
+             *     allowed object is
294
+             *     {@link String }
295
+             *     
296
+             */
297
+            public void setStatusCode(String value) {
298
+                this.statusCode = value;
299
+            }
300
+
301
+            /**
302
+             * Obtiene el valor de la propiedad statusDesc.
303
+             * 
304
+             * @return
305
+             *     possible object is
306
+             *     {@link String }
307
+             *     
308
+             */
309
+            public String getStatusDesc() {
310
+                return statusDesc;
311
+            }
312
+
313
+            /**
314
+             * Define el valor de la propiedad statusDesc.
315
+             * 
316
+             * @param value
317
+             *     allowed object is
318
+             *     {@link String }
319
+             *     
320
+             */
321
+            public void setStatusDesc(String value) {
322
+                this.statusDesc = value;
323
+            }
324
+
325
+            /**
326
+             * Obtiene el valor de la propiedad additionalStatus.
327
+             * 
328
+             * @return
329
+             *     possible object is
330
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
331
+             *     
332
+             */
333
+            public UpdateUserResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
334
+                return additionalStatus;
335
+            }
336
+
337
+            /**
338
+             * Define el valor de la propiedad additionalStatus.
339
+             * 
340
+             * @param value
341
+             *     allowed object is
342
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
343
+             *     
344
+             */
345
+            public void setAdditionalStatus(UpdateUserResponse.BankSvcRs.Status.AdditionalStatus value) {
346
+                this.additionalStatus = value;
347
+            }
348
+
349
+
350
+            /**
351
+             * &lt;p&gt;Clase Java para anonymous complex type.
352
+             * 
353
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
354
+             * 
355
+             * &lt;pre&gt;
356
+             * &amp;lt;complexType&amp;gt;
357
+             *   &amp;lt;complexContent&amp;gt;
358
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
359
+             *       &amp;lt;sequence&amp;gt;
360
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
361
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
362
+             *       &amp;lt;/sequence&amp;gt;
363
+             *     &amp;lt;/restriction&amp;gt;
364
+             *   &amp;lt;/complexContent&amp;gt;
365
+             * &amp;lt;/complexType&amp;gt;
366
+             * &lt;/pre&gt;
367
+             * 
368
+             * 
369
+             */
370
+            @XmlAccessorType(XmlAccessType.FIELD)
371
+            @XmlType(name = "", propOrder = {
372
+                "statusCode",
373
+                "statusDesc"
374
+            })
375
+            public static class AdditionalStatus {
376
+
377
+                @XmlElement(name = "StatusCode", required = true)
378
+                protected String statusCode;
379
+                @XmlElement(name = "StatusDesc", required = true)
380
+                protected String statusDesc;
381
+
382
+                /**
383
+                 * Obtiene el valor de la propiedad statusCode.
384
+                 * 
385
+                 * @return
386
+                 *     possible object is
387
+                 *     {@link String }
388
+                 *     
389
+                 */
390
+                public String getStatusCode() {
391
+                    return statusCode;
392
+                }
393
+
394
+                /**
395
+                 * Define el valor de la propiedad statusCode.
396
+                 * 
397
+                 * @param value
398
+                 *     allowed object is
399
+                 *     {@link String }
400
+                 *     
401
+                 */
402
+                public void setStatusCode(String value) {
403
+                    this.statusCode = value;
404
+                }
405
+
406
+                /**
407
+                 * Obtiene el valor de la propiedad statusDesc.
408
+                 * 
409
+                 * @return
410
+                 *     possible object is
411
+                 *     {@link String }
412
+                 *     
413
+                 */
414
+                public String getStatusDesc() {
415
+                    return statusDesc;
416
+                }
417
+
418
+                /**
419
+                 * Define el valor de la propiedad statusDesc.
420
+                 * 
421
+                 * @param value
422
+                 *     allowed object is
423
+                 *     {@link String }
424
+                 *     
425
+                 */
426
+                public void setStatusDesc(String value) {
427
+                    this.statusDesc = value;
428
+                }
429
+
430
+            }
431
+
432
+        }
433
+
434
+
435
+        /**
436
+         * &lt;p&gt;Clase Java para anonymous complex type.
437
+         * 
438
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
439
+         * 
440
+         * &lt;pre&gt;
441
+         * &amp;lt;complexType&amp;gt;
442
+         *   &amp;lt;complexContent&amp;gt;
443
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
444
+         *       &amp;lt;sequence&amp;gt;
445
+         *         &amp;lt;element name="gnsIDUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
446
+         *       &amp;lt;/sequence&amp;gt;
447
+         *     &amp;lt;/restriction&amp;gt;
448
+         *   &amp;lt;/complexContent&amp;gt;
449
+         * &amp;lt;/complexType&amp;gt;
450
+         * &lt;/pre&gt;
451
+         * 
452
+         * 
453
+         */
454
+        @XmlAccessorType(XmlAccessType.FIELD)
455
+        @XmlType(name = "", propOrder = {
456
+            "gnsIDUsuario"
457
+        })
458
+        public static class WSRs {
459
+
460
+            protected long gnsIDUsuario;
461
+
462
+            /**
463
+             * Obtiene el valor de la propiedad gnsIDUsuario.
464
+             * 
465
+             */
466
+            public long getGnsIDUsuario() {
467
+                return gnsIDUsuario;
468
+            }
469
+
470
+            /**
471
+             * Define el valor de la propiedad gnsIDUsuario.
472
+             * 
473
+             */
474
+            public void setGnsIDUsuario(long value) {
475
+                this.gnsIDUsuario = value;
476
+            }
477
+
478
+        }
479
+
480
+    }
481
+
482
+}

+ 416 - 0
src/GenesisResponse/UserBlockResponse.java 查看文件

@@ -0,0 +1,416 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 03:44:10 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_UserBlockResponse;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="Status"&amp;gt;
34
+ *                     &amp;lt;complexType&amp;gt;
35
+ *                       &amp;lt;complexContent&amp;gt;
36
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
37
+ *                           &amp;lt;sequence&amp;gt;
38
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
39
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
40
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
41
+ *                               &amp;lt;complexType&amp;gt;
42
+ *                                 &amp;lt;complexContent&amp;gt;
43
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
44
+ *                                     &amp;lt;sequence&amp;gt;
45
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
46
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
47
+ *                                     &amp;lt;/sequence&amp;gt;
48
+ *                                   &amp;lt;/restriction&amp;gt;
49
+ *                                 &amp;lt;/complexContent&amp;gt;
50
+ *                               &amp;lt;/complexType&amp;gt;
51
+ *                             &amp;lt;/element&amp;gt;
52
+ *                           &amp;lt;/sequence&amp;gt;
53
+ *                         &amp;lt;/restriction&amp;gt;
54
+ *                       &amp;lt;/complexContent&amp;gt;
55
+ *                     &amp;lt;/complexType&amp;gt;
56
+ *                   &amp;lt;/element&amp;gt;
57
+ *                   &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
58
+ *                 &amp;lt;/sequence&amp;gt;
59
+ *               &amp;lt;/restriction&amp;gt;
60
+ *             &amp;lt;/complexContent&amp;gt;
61
+ *           &amp;lt;/complexType&amp;gt;
62
+ *         &amp;lt;/element&amp;gt;
63
+ *       &amp;lt;/sequence&amp;gt;
64
+ *     &amp;lt;/restriction&amp;gt;
65
+ *   &amp;lt;/complexContent&amp;gt;
66
+ * &amp;lt;/complexType&amp;gt;
67
+ * &lt;/pre&gt;
68
+ * 
69
+ * 
70
+ */
71
+@XmlAccessorType(XmlAccessType.FIELD)
72
+@XmlType(name = "", propOrder = {
73
+    "bankSvcRs"
74
+})
75
+@XmlRootElement(name = "Genesis")
76
+public class UserBlockResponse {
77
+
78
+    @XmlElement(name = "BankSvcRs", required = true)
79
+    protected UserBlockResponse.BankSvcRs bankSvcRs;
80
+
81
+    /**
82
+     * Obtiene el valor de la propiedad bankSvcRs.
83
+     * 
84
+     * @return
85
+     *     possible object is
86
+     *     {@link Genesis.BankSvcRs }
87
+     *     
88
+     */
89
+    public UserBlockResponse.BankSvcRs getBankSvcRs() {
90
+        return bankSvcRs;
91
+    }
92
+
93
+    /**
94
+     * Define el valor de la propiedad bankSvcRs.
95
+     * 
96
+     * @param value
97
+     *     allowed object is
98
+     *     {@link Genesis.BankSvcRs }
99
+     *     
100
+     */
101
+    public void setBankSvcRs(UserBlockResponse.BankSvcRs value) {
102
+        this.bankSvcRs = value;
103
+    }
104
+
105
+
106
+    /**
107
+     * &lt;p&gt;Clase Java para anonymous complex type.
108
+     * 
109
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
110
+     * 
111
+     * &lt;pre&gt;
112
+     * &amp;lt;complexType&amp;gt;
113
+     *   &amp;lt;complexContent&amp;gt;
114
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
115
+     *       &amp;lt;sequence&amp;gt;
116
+     *         &amp;lt;element name="Status"&amp;gt;
117
+     *           &amp;lt;complexType&amp;gt;
118
+     *             &amp;lt;complexContent&amp;gt;
119
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
120
+     *                 &amp;lt;sequence&amp;gt;
121
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
122
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
123
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
124
+     *                     &amp;lt;complexType&amp;gt;
125
+     *                       &amp;lt;complexContent&amp;gt;
126
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
127
+     *                           &amp;lt;sequence&amp;gt;
128
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
129
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
130
+     *                           &amp;lt;/sequence&amp;gt;
131
+     *                         &amp;lt;/restriction&amp;gt;
132
+     *                       &amp;lt;/complexContent&amp;gt;
133
+     *                     &amp;lt;/complexType&amp;gt;
134
+     *                   &amp;lt;/element&amp;gt;
135
+     *                 &amp;lt;/sequence&amp;gt;
136
+     *               &amp;lt;/restriction&amp;gt;
137
+     *             &amp;lt;/complexContent&amp;gt;
138
+     *           &amp;lt;/complexType&amp;gt;
139
+     *         &amp;lt;/element&amp;gt;
140
+     *         &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
141
+     *       &amp;lt;/sequence&amp;gt;
142
+     *     &amp;lt;/restriction&amp;gt;
143
+     *   &amp;lt;/complexContent&amp;gt;
144
+     * &amp;lt;/complexType&amp;gt;
145
+     * &lt;/pre&gt;
146
+     * 
147
+     * 
148
+     */
149
+    @XmlAccessorType(XmlAccessType.FIELD)
150
+    @XmlType(name = "", propOrder = {
151
+        "status",
152
+        "wsRs"
153
+    })
154
+    public static class BankSvcRs {
155
+
156
+        @XmlElement(name = "Status", required = true)
157
+        protected UserBlockResponse.BankSvcRs.Status status;
158
+        @XmlElement(name = "WSRs", required = true)
159
+        protected String wsRs;
160
+
161
+        /**
162
+         * Obtiene el valor de la propiedad status.
163
+         * 
164
+         * @return
165
+         *     possible object is
166
+         *     {@link Genesis.BankSvcRs.Status }
167
+         *     
168
+         */
169
+        public UserBlockResponse.BankSvcRs.Status getStatus() {
170
+            return status;
171
+        }
172
+
173
+        /**
174
+         * Define el valor de la propiedad status.
175
+         * 
176
+         * @param value
177
+         *     allowed object is
178
+         *     {@link Genesis.BankSvcRs.Status }
179
+         *     
180
+         */
181
+        public void setStatus(UserBlockResponse.BankSvcRs.Status value) {
182
+            this.status = value;
183
+        }
184
+
185
+        /**
186
+         * Obtiene el valor de la propiedad wsRs.
187
+         * 
188
+         * @return
189
+         *     possible object is
190
+         *     {@link String }
191
+         *     
192
+         */
193
+        public String getWSRs() {
194
+            return wsRs;
195
+        }
196
+
197
+        /**
198
+         * Define el valor de la propiedad wsRs.
199
+         * 
200
+         * @param value
201
+         *     allowed object is
202
+         *     {@link String }
203
+         *     
204
+         */
205
+        public void setWSRs(String value) {
206
+            this.wsRs = value;
207
+        }
208
+
209
+
210
+        /**
211
+         * &lt;p&gt;Clase Java para anonymous complex type.
212
+         * 
213
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
214
+         * 
215
+         * &lt;pre&gt;
216
+         * &amp;lt;complexType&amp;gt;
217
+         *   &amp;lt;complexContent&amp;gt;
218
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
219
+         *       &amp;lt;sequence&amp;gt;
220
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
221
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
222
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
223
+         *           &amp;lt;complexType&amp;gt;
224
+         *             &amp;lt;complexContent&amp;gt;
225
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
226
+         *                 &amp;lt;sequence&amp;gt;
227
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
228
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
229
+         *                 &amp;lt;/sequence&amp;gt;
230
+         *               &amp;lt;/restriction&amp;gt;
231
+         *             &amp;lt;/complexContent&amp;gt;
232
+         *           &amp;lt;/complexType&amp;gt;
233
+         *         &amp;lt;/element&amp;gt;
234
+         *       &amp;lt;/sequence&amp;gt;
235
+         *     &amp;lt;/restriction&amp;gt;
236
+         *   &amp;lt;/complexContent&amp;gt;
237
+         * &amp;lt;/complexType&amp;gt;
238
+         * &lt;/pre&gt;
239
+         * 
240
+         * 
241
+         */
242
+        @XmlAccessorType(XmlAccessType.FIELD)
243
+        @XmlType(name = "", propOrder = {
244
+            "statusCode",
245
+            "statusDesc",
246
+            "additionalStatus"
247
+        })
248
+        public static class Status {
249
+
250
+            @XmlElement(name = "StatusCode", required = true)
251
+            protected String statusCode;
252
+            @XmlElement(name = "StatusDesc", required = true)
253
+            protected String statusDesc;
254
+            @XmlElement(name = "AdditionalStatus", required = true)
255
+            protected UserBlockResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
256
+
257
+            /**
258
+             * Obtiene el valor de la propiedad statusCode.
259
+             * 
260
+             * @return
261
+             *     possible object is
262
+             *     {@link String }
263
+             *     
264
+             */
265
+            public String getStatusCode() {
266
+                return statusCode;
267
+            }
268
+
269
+            /**
270
+             * Define el valor de la propiedad statusCode.
271
+             * 
272
+             * @param value
273
+             *     allowed object is
274
+             *     {@link String }
275
+             *     
276
+             */
277
+            public void setStatusCode(String value) {
278
+                this.statusCode = value;
279
+            }
280
+
281
+            /**
282
+             * Obtiene el valor de la propiedad statusDesc.
283
+             * 
284
+             * @return
285
+             *     possible object is
286
+             *     {@link String }
287
+             *     
288
+             */
289
+            public String getStatusDesc() {
290
+                return statusDesc;
291
+            }
292
+
293
+            /**
294
+             * Define el valor de la propiedad statusDesc.
295
+             * 
296
+             * @param value
297
+             *     allowed object is
298
+             *     {@link String }
299
+             *     
300
+             */
301
+            public void setStatusDesc(String value) {
302
+                this.statusDesc = value;
303
+            }
304
+
305
+            /**
306
+             * Obtiene el valor de la propiedad additionalStatus.
307
+             * 
308
+             * @return
309
+             *     possible object is
310
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
311
+             *     
312
+             */
313
+            public UserBlockResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
314
+                return additionalStatus;
315
+            }
316
+
317
+            /**
318
+             * Define el valor de la propiedad additionalStatus.
319
+             * 
320
+             * @param value
321
+             *     allowed object is
322
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
323
+             *     
324
+             */
325
+            public void setAdditionalStatus(UserBlockResponse.BankSvcRs.Status.AdditionalStatus value) {
326
+                this.additionalStatus = value;
327
+            }
328
+
329
+
330
+            /**
331
+             * &lt;p&gt;Clase Java para anonymous complex type.
332
+             * 
333
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
334
+             * 
335
+             * &lt;pre&gt;
336
+             * &amp;lt;complexType&amp;gt;
337
+             *   &amp;lt;complexContent&amp;gt;
338
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
339
+             *       &amp;lt;sequence&amp;gt;
340
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
341
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
342
+             *       &amp;lt;/sequence&amp;gt;
343
+             *     &amp;lt;/restriction&amp;gt;
344
+             *   &amp;lt;/complexContent&amp;gt;
345
+             * &amp;lt;/complexType&amp;gt;
346
+             * &lt;/pre&gt;
347
+             * 
348
+             * 
349
+             */
350
+            @XmlAccessorType(XmlAccessType.FIELD)
351
+            @XmlType(name = "", propOrder = {
352
+                "statusCode",
353
+                "statusDesc"
354
+            })
355
+            public static class AdditionalStatus {
356
+
357
+                @XmlElement(name = "StatusCode", required = true)
358
+                protected String statusCode;
359
+                @XmlElement(name = "StatusDesc", required = true)
360
+                protected String statusDesc;
361
+
362
+                /**
363
+                 * Obtiene el valor de la propiedad statusCode.
364
+                 * 
365
+                 * @return
366
+                 *     possible object is
367
+                 *     {@link String }
368
+                 *     
369
+                 */
370
+                public String getStatusCode() {
371
+                    return statusCode;
372
+                }
373
+
374
+                /**
375
+                 * Define el valor de la propiedad statusCode.
376
+                 * 
377
+                 * @param value
378
+                 *     allowed object is
379
+                 *     {@link String }
380
+                 *     
381
+                 */
382
+                public void setStatusCode(String value) {
383
+                    this.statusCode = value;
384
+                }
385
+
386
+                /**
387
+                 * Obtiene el valor de la propiedad statusDesc.
388
+                 * 
389
+                 * @return
390
+                 *     possible object is
391
+                 *     {@link String }
392
+                 *     
393
+                 */
394
+                public String getStatusDesc() {
395
+                    return statusDesc;
396
+                }
397
+
398
+                /**
399
+                 * Define el valor de la propiedad statusDesc.
400
+                 * 
401
+                 * @param value
402
+                 *     allowed object is
403
+                 *     {@link String }
404
+                 *     
405
+                 */
406
+                public void setStatusDesc(String value) {
407
+                    this.statusDesc = value;
408
+                }
409
+
410
+            }
411
+
412
+        }
413
+
414
+    }
415
+
416
+}

+ 776 - 0
src/GenesisResponse/UserListResponse.java 查看文件

@@ -0,0 +1,776 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 03:57:26 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_UserListResponse;
10
+
11
+import java.util.ArrayList;
12
+import java.util.List;
13
+import javax.xml.bind.annotation.XmlAccessType;
14
+import javax.xml.bind.annotation.XmlAccessorType;
15
+import javax.xml.bind.annotation.XmlElement;
16
+import javax.xml.bind.annotation.XmlRootElement;
17
+import javax.xml.bind.annotation.XmlType;
18
+
19
+
20
+/**
21
+ * &lt;p&gt;Clase Java para anonymous complex type.
22
+ * 
23
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
24
+ * 
25
+ * &lt;pre&gt;
26
+ * &amp;lt;complexType&amp;gt;
27
+ *   &amp;lt;complexContent&amp;gt;
28
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
29
+ *       &amp;lt;sequence&amp;gt;
30
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
31
+ *           &amp;lt;complexType&amp;gt;
32
+ *             &amp;lt;complexContent&amp;gt;
33
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
34
+ *                 &amp;lt;sequence&amp;gt;
35
+ *                   &amp;lt;element name="Status"&amp;gt;
36
+ *                     &amp;lt;complexType&amp;gt;
37
+ *                       &amp;lt;complexContent&amp;gt;
38
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
39
+ *                           &amp;lt;sequence&amp;gt;
40
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
41
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
42
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
43
+ *                               &amp;lt;complexType&amp;gt;
44
+ *                                 &amp;lt;complexContent&amp;gt;
45
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
46
+ *                                     &amp;lt;sequence&amp;gt;
47
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
48
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
49
+ *                                     &amp;lt;/sequence&amp;gt;
50
+ *                                   &amp;lt;/restriction&amp;gt;
51
+ *                                 &amp;lt;/complexContent&amp;gt;
52
+ *                               &amp;lt;/complexType&amp;gt;
53
+ *                             &amp;lt;/element&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                   &amp;lt;element name="WSRs"&amp;gt;
60
+ *                     &amp;lt;complexType&amp;gt;
61
+ *                       &amp;lt;complexContent&amp;gt;
62
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
63
+ *                           &amp;lt;sequence&amp;gt;
64
+ *                             &amp;lt;element name="Usuario" maxOccurs="unbounded" minOccurs="0"&amp;gt;
65
+ *                               &amp;lt;complexType&amp;gt;
66
+ *                                 &amp;lt;complexContent&amp;gt;
67
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                                     &amp;lt;sequence&amp;gt;
69
+ *                                       &amp;lt;element name="IdUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
70
+ *                                       &amp;lt;element name="RUT" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
71
+ *                                       &amp;lt;element name="Nombres" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
72
+ *                                       &amp;lt;element name="ApellidoPaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
73
+ *                                       &amp;lt;element name="ApellidoMaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
74
+ *                                       &amp;lt;element name="IdRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
75
+ *                                       &amp;lt;element name="Bloqueado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
76
+ *                                       &amp;lt;element name="IntentosdeLogeo" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
77
+ *                                     &amp;lt;/sequence&amp;gt;
78
+ *                                   &amp;lt;/restriction&amp;gt;
79
+ *                                 &amp;lt;/complexContent&amp;gt;
80
+ *                               &amp;lt;/complexType&amp;gt;
81
+ *                             &amp;lt;/element&amp;gt;
82
+ *                           &amp;lt;/sequence&amp;gt;
83
+ *                         &amp;lt;/restriction&amp;gt;
84
+ *                       &amp;lt;/complexContent&amp;gt;
85
+ *                     &amp;lt;/complexType&amp;gt;
86
+ *                   &amp;lt;/element&amp;gt;
87
+ *                 &amp;lt;/sequence&amp;gt;
88
+ *               &amp;lt;/restriction&amp;gt;
89
+ *             &amp;lt;/complexContent&amp;gt;
90
+ *           &amp;lt;/complexType&amp;gt;
91
+ *         &amp;lt;/element&amp;gt;
92
+ *       &amp;lt;/sequence&amp;gt;
93
+ *     &amp;lt;/restriction&amp;gt;
94
+ *   &amp;lt;/complexContent&amp;gt;
95
+ * &amp;lt;/complexType&amp;gt;
96
+ * &lt;/pre&gt;
97
+ * 
98
+ * 
99
+ */
100
+@XmlAccessorType(XmlAccessType.FIELD)
101
+@XmlType(name = "", propOrder = {
102
+    "bankSvcRs"
103
+})
104
+@XmlRootElement(name = "Genesis")
105
+public class UserListResponse {
106
+
107
+    @XmlElement(name = "BankSvcRs", required = true)
108
+    protected UserListResponse.BankSvcRs bankSvcRs;
109
+
110
+    /**
111
+     * Obtiene el valor de la propiedad bankSvcRs.
112
+     * 
113
+     * @return
114
+     *     possible object is
115
+     *     {@link Genesis.BankSvcRs }
116
+     *     
117
+     */
118
+    public UserListResponse.BankSvcRs getBankSvcRs() {
119
+        return bankSvcRs;
120
+    }
121
+
122
+    /**
123
+     * Define el valor de la propiedad bankSvcRs.
124
+     * 
125
+     * @param value
126
+     *     allowed object is
127
+     *     {@link Genesis.BankSvcRs }
128
+     *     
129
+     */
130
+    public void setBankSvcRs(UserListResponse.BankSvcRs value) {
131
+        this.bankSvcRs = value;
132
+    }
133
+
134
+
135
+    /**
136
+     * &lt;p&gt;Clase Java para anonymous complex type.
137
+     * 
138
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
139
+     * 
140
+     * &lt;pre&gt;
141
+     * &amp;lt;complexType&amp;gt;
142
+     *   &amp;lt;complexContent&amp;gt;
143
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
144
+     *       &amp;lt;sequence&amp;gt;
145
+     *         &amp;lt;element name="Status"&amp;gt;
146
+     *           &amp;lt;complexType&amp;gt;
147
+     *             &amp;lt;complexContent&amp;gt;
148
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
149
+     *                 &amp;lt;sequence&amp;gt;
150
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
151
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
152
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
153
+     *                     &amp;lt;complexType&amp;gt;
154
+     *                       &amp;lt;complexContent&amp;gt;
155
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
156
+     *                           &amp;lt;sequence&amp;gt;
157
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
158
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
159
+     *                           &amp;lt;/sequence&amp;gt;
160
+     *                         &amp;lt;/restriction&amp;gt;
161
+     *                       &amp;lt;/complexContent&amp;gt;
162
+     *                     &amp;lt;/complexType&amp;gt;
163
+     *                   &amp;lt;/element&amp;gt;
164
+     *                 &amp;lt;/sequence&amp;gt;
165
+     *               &amp;lt;/restriction&amp;gt;
166
+     *             &amp;lt;/complexContent&amp;gt;
167
+     *           &amp;lt;/complexType&amp;gt;
168
+     *         &amp;lt;/element&amp;gt;
169
+     *         &amp;lt;element name="WSRs"&amp;gt;
170
+     *           &amp;lt;complexType&amp;gt;
171
+     *             &amp;lt;complexContent&amp;gt;
172
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
173
+     *                 &amp;lt;sequence&amp;gt;
174
+     *                   &amp;lt;element name="Usuario" maxOccurs="unbounded" minOccurs="0"&amp;gt;
175
+     *                     &amp;lt;complexType&amp;gt;
176
+     *                       &amp;lt;complexContent&amp;gt;
177
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
178
+     *                           &amp;lt;sequence&amp;gt;
179
+     *                             &amp;lt;element name="IdUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
180
+     *                             &amp;lt;element name="RUT" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
181
+     *                             &amp;lt;element name="Nombres" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
182
+     *                             &amp;lt;element name="ApellidoPaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
183
+     *                             &amp;lt;element name="ApellidoMaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
184
+     *                             &amp;lt;element name="IdRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
185
+     *                             &amp;lt;element name="Bloqueado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
186
+     *                             &amp;lt;element name="IntentosdeLogeo" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
187
+     *                           &amp;lt;/sequence&amp;gt;
188
+     *                         &amp;lt;/restriction&amp;gt;
189
+     *                       &amp;lt;/complexContent&amp;gt;
190
+     *                     &amp;lt;/complexType&amp;gt;
191
+     *                   &amp;lt;/element&amp;gt;
192
+     *                 &amp;lt;/sequence&amp;gt;
193
+     *               &amp;lt;/restriction&amp;gt;
194
+     *             &amp;lt;/complexContent&amp;gt;
195
+     *           &amp;lt;/complexType&amp;gt;
196
+     *         &amp;lt;/element&amp;gt;
197
+     *       &amp;lt;/sequence&amp;gt;
198
+     *     &amp;lt;/restriction&amp;gt;
199
+     *   &amp;lt;/complexContent&amp;gt;
200
+     * &amp;lt;/complexType&amp;gt;
201
+     * &lt;/pre&gt;
202
+     * 
203
+     * 
204
+     */
205
+    @XmlAccessorType(XmlAccessType.FIELD)
206
+    @XmlType(name = "", propOrder = {
207
+        "status",
208
+        "wsRs"
209
+    })
210
+    public static class BankSvcRs {
211
+
212
+        @XmlElement(name = "Status", required = true)
213
+        protected UserListResponse.BankSvcRs.Status status;
214
+        @XmlElement(name = "WSRs", required = true)
215
+        protected UserListResponse.BankSvcRs.WSRs wsRs;
216
+
217
+        /**
218
+         * Obtiene el valor de la propiedad status.
219
+         * 
220
+         * @return
221
+         *     possible object is
222
+         *     {@link Genesis.BankSvcRs.Status }
223
+         *     
224
+         */
225
+        public UserListResponse.BankSvcRs.Status getStatus() {
226
+            return status;
227
+        }
228
+
229
+        /**
230
+         * Define el valor de la propiedad status.
231
+         * 
232
+         * @param value
233
+         *     allowed object is
234
+         *     {@link Genesis.BankSvcRs.Status }
235
+         *     
236
+         */
237
+        public void setStatus(UserListResponse.BankSvcRs.Status value) {
238
+            this.status = value;
239
+        }
240
+
241
+        /**
242
+         * Obtiene el valor de la propiedad wsRs.
243
+         * 
244
+         * @return
245
+         *     possible object is
246
+         *     {@link Genesis.BankSvcRs.WSRs }
247
+         *     
248
+         */
249
+        public UserListResponse.BankSvcRs.WSRs getWSRs() {
250
+            return wsRs;
251
+        }
252
+
253
+        /**
254
+         * Define el valor de la propiedad wsRs.
255
+         * 
256
+         * @param value
257
+         *     allowed object is
258
+         *     {@link Genesis.BankSvcRs.WSRs }
259
+         *     
260
+         */
261
+        public void setWSRs(UserListResponse.BankSvcRs.WSRs value) {
262
+            this.wsRs = value;
263
+        }
264
+
265
+
266
+        /**
267
+         * &lt;p&gt;Clase Java para anonymous complex type.
268
+         * 
269
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
270
+         * 
271
+         * &lt;pre&gt;
272
+         * &amp;lt;complexType&amp;gt;
273
+         *   &amp;lt;complexContent&amp;gt;
274
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
275
+         *       &amp;lt;sequence&amp;gt;
276
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
277
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
278
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
279
+         *           &amp;lt;complexType&amp;gt;
280
+         *             &amp;lt;complexContent&amp;gt;
281
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
282
+         *                 &amp;lt;sequence&amp;gt;
283
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
284
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
285
+         *                 &amp;lt;/sequence&amp;gt;
286
+         *               &amp;lt;/restriction&amp;gt;
287
+         *             &amp;lt;/complexContent&amp;gt;
288
+         *           &amp;lt;/complexType&amp;gt;
289
+         *         &amp;lt;/element&amp;gt;
290
+         *       &amp;lt;/sequence&amp;gt;
291
+         *     &amp;lt;/restriction&amp;gt;
292
+         *   &amp;lt;/complexContent&amp;gt;
293
+         * &amp;lt;/complexType&amp;gt;
294
+         * &lt;/pre&gt;
295
+         * 
296
+         * 
297
+         */
298
+        @XmlAccessorType(XmlAccessType.FIELD)
299
+        @XmlType(name = "", propOrder = {
300
+            "statusCode",
301
+            "statusDesc",
302
+            "additionalStatus"
303
+        })
304
+        public static class Status {
305
+
306
+            @XmlElement(name = "StatusCode", required = true)
307
+            protected String statusCode;
308
+            @XmlElement(name = "StatusDesc", required = true)
309
+            protected String statusDesc;
310
+            @XmlElement(name = "AdditionalStatus", required = true)
311
+            protected UserListResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
312
+
313
+            /**
314
+             * Obtiene el valor de la propiedad statusCode.
315
+             * 
316
+             * @return
317
+             *     possible object is
318
+             *     {@link String }
319
+             *     
320
+             */
321
+            public String getStatusCode() {
322
+                return statusCode;
323
+            }
324
+
325
+            /**
326
+             * Define el valor de la propiedad statusCode.
327
+             * 
328
+             * @param value
329
+             *     allowed object is
330
+             *     {@link String }
331
+             *     
332
+             */
333
+            public void setStatusCode(String value) {
334
+                this.statusCode = value;
335
+            }
336
+
337
+            /**
338
+             * Obtiene el valor de la propiedad statusDesc.
339
+             * 
340
+             * @return
341
+             *     possible object is
342
+             *     {@link String }
343
+             *     
344
+             */
345
+            public String getStatusDesc() {
346
+                return statusDesc;
347
+            }
348
+
349
+            /**
350
+             * Define el valor de la propiedad statusDesc.
351
+             * 
352
+             * @param value
353
+             *     allowed object is
354
+             *     {@link String }
355
+             *     
356
+             */
357
+            public void setStatusDesc(String value) {
358
+                this.statusDesc = value;
359
+            }
360
+
361
+            /**
362
+             * Obtiene el valor de la propiedad additionalStatus.
363
+             * 
364
+             * @return
365
+             *     possible object is
366
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
367
+             *     
368
+             */
369
+            public UserListResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
370
+                return additionalStatus;
371
+            }
372
+
373
+            /**
374
+             * Define el valor de la propiedad additionalStatus.
375
+             * 
376
+             * @param value
377
+             *     allowed object is
378
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
379
+             *     
380
+             */
381
+            public void setAdditionalStatus(UserListResponse.BankSvcRs.Status.AdditionalStatus value) {
382
+                this.additionalStatus = value;
383
+            }
384
+
385
+
386
+            /**
387
+             * &lt;p&gt;Clase Java para anonymous complex type.
388
+             * 
389
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
390
+             * 
391
+             * &lt;pre&gt;
392
+             * &amp;lt;complexType&amp;gt;
393
+             *   &amp;lt;complexContent&amp;gt;
394
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
395
+             *       &amp;lt;sequence&amp;gt;
396
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
397
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
398
+             *       &amp;lt;/sequence&amp;gt;
399
+             *     &amp;lt;/restriction&amp;gt;
400
+             *   &amp;lt;/complexContent&amp;gt;
401
+             * &amp;lt;/complexType&amp;gt;
402
+             * &lt;/pre&gt;
403
+             * 
404
+             * 
405
+             */
406
+            @XmlAccessorType(XmlAccessType.FIELD)
407
+            @XmlType(name = "", propOrder = {
408
+                "statusCode",
409
+                "statusDesc"
410
+            })
411
+            public static class AdditionalStatus {
412
+
413
+                @XmlElement(name = "StatusCode", required = true)
414
+                protected String statusCode;
415
+                @XmlElement(name = "StatusDesc", required = true)
416
+                protected String statusDesc;
417
+
418
+                /**
419
+                 * Obtiene el valor de la propiedad statusCode.
420
+                 * 
421
+                 * @return
422
+                 *     possible object is
423
+                 *     {@link String }
424
+                 *     
425
+                 */
426
+                public String getStatusCode() {
427
+                    return statusCode;
428
+                }
429
+
430
+                /**
431
+                 * Define el valor de la propiedad statusCode.
432
+                 * 
433
+                 * @param value
434
+                 *     allowed object is
435
+                 *     {@link String }
436
+                 *     
437
+                 */
438
+                public void setStatusCode(String value) {
439
+                    this.statusCode = value;
440
+                }
441
+
442
+                /**
443
+                 * Obtiene el valor de la propiedad statusDesc.
444
+                 * 
445
+                 * @return
446
+                 *     possible object is
447
+                 *     {@link String }
448
+                 *     
449
+                 */
450
+                public String getStatusDesc() {
451
+                    return statusDesc;
452
+                }
453
+
454
+                /**
455
+                 * Define el valor de la propiedad statusDesc.
456
+                 * 
457
+                 * @param value
458
+                 *     allowed object is
459
+                 *     {@link String }
460
+                 *     
461
+                 */
462
+                public void setStatusDesc(String value) {
463
+                    this.statusDesc = value;
464
+                }
465
+
466
+            }
467
+
468
+        }
469
+
470
+
471
+        /**
472
+         * &lt;p&gt;Clase Java para anonymous complex type.
473
+         * 
474
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
475
+         * 
476
+         * &lt;pre&gt;
477
+         * &amp;lt;complexType&amp;gt;
478
+         *   &amp;lt;complexContent&amp;gt;
479
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
480
+         *       &amp;lt;sequence&amp;gt;
481
+         *         &amp;lt;element name="Usuario" maxOccurs="unbounded" minOccurs="0"&amp;gt;
482
+         *           &amp;lt;complexType&amp;gt;
483
+         *             &amp;lt;complexContent&amp;gt;
484
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
485
+         *                 &amp;lt;sequence&amp;gt;
486
+         *                   &amp;lt;element name="IdUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
487
+         *                   &amp;lt;element name="RUT" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
488
+         *                   &amp;lt;element name="Nombres" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
489
+         *                   &amp;lt;element name="ApellidoPaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
490
+         *                   &amp;lt;element name="ApellidoMaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
491
+         *                   &amp;lt;element name="IdRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
492
+         *                   &amp;lt;element name="Bloqueado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
493
+         *                   &amp;lt;element name="IntentosdeLogeo" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
494
+         *                 &amp;lt;/sequence&amp;gt;
495
+         *               &amp;lt;/restriction&amp;gt;
496
+         *             &amp;lt;/complexContent&amp;gt;
497
+         *           &amp;lt;/complexType&amp;gt;
498
+         *         &amp;lt;/element&amp;gt;
499
+         *       &amp;lt;/sequence&amp;gt;
500
+         *     &amp;lt;/restriction&amp;gt;
501
+         *   &amp;lt;/complexContent&amp;gt;
502
+         * &amp;lt;/complexType&amp;gt;
503
+         * &lt;/pre&gt;
504
+         * 
505
+         * 
506
+         */
507
+        @XmlAccessorType(XmlAccessType.FIELD)
508
+        @XmlType(name = "", propOrder = {
509
+            "usuario"
510
+        })
511
+        public static class WSRs {
512
+
513
+            @XmlElement(name = "Usuario")
514
+            protected List<UserListResponse.BankSvcRs.WSRs.Usuario> usuario;
515
+
516
+            /**
517
+             * Gets the value of the usuario property.
518
+             * 
519
+             * &lt;p&gt;
520
+             * This accessor method returns a reference to the live list,
521
+             * not a snapshot. Therefore any modification you make to the
522
+             * returned list will be present inside the JAXB object.
523
+             * This is why there is not a &lt;CODE&gt;set&lt;/CODE&gt; method for the usuario property.
524
+             * 
525
+             * &lt;p&gt;
526
+             * For example, to add a new item, do as follows:
527
+             * &lt;pre&gt;
528
+             *    getUsuario().add(newItem);
529
+             * &lt;/pre&gt;
530
+             * 
531
+             * 
532
+             * &lt;p&gt;
533
+             * Objects of the following type(s) are allowed in the list
534
+             * {@link Genesis.BankSvcRs.WSRs.Usuario }
535
+             * 
536
+             * 
537
+             */
538
+            public List<UserListResponse.BankSvcRs.WSRs.Usuario> getUsuario() {
539
+                if (usuario == null) {
540
+                    usuario = new ArrayList<UserListResponse.BankSvcRs.WSRs.Usuario>();
541
+                }
542
+                return this.usuario;
543
+            }
544
+
545
+
546
+            /**
547
+             * &lt;p&gt;Clase Java para anonymous complex type.
548
+             * 
549
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
550
+             * 
551
+             * &lt;pre&gt;
552
+             * &amp;lt;complexType&amp;gt;
553
+             *   &amp;lt;complexContent&amp;gt;
554
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
555
+             *       &amp;lt;sequence&amp;gt;
556
+             *         &amp;lt;element name="IdUsuario" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
557
+             *         &amp;lt;element name="RUT" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
558
+             *         &amp;lt;element name="Nombres" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
559
+             *         &amp;lt;element name="ApellidoPaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
560
+             *         &amp;lt;element name="ApellidoMaterno" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
561
+             *         &amp;lt;element name="IdRol" type="{http://www.w3.org/2001/XMLSchema}long"/&amp;gt;
562
+             *         &amp;lt;element name="Bloqueado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
563
+             *         &amp;lt;element name="IntentosdeLogeo" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
564
+             *       &amp;lt;/sequence&amp;gt;
565
+             *     &amp;lt;/restriction&amp;gt;
566
+             *   &amp;lt;/complexContent&amp;gt;
567
+             * &amp;lt;/complexType&amp;gt;
568
+             * &lt;/pre&gt;
569
+             * 
570
+             * 
571
+             */
572
+            @XmlAccessorType(XmlAccessType.FIELD)
573
+            @XmlType(name = "", propOrder = {
574
+                "idUsuario",
575
+                "rut",
576
+                "nombres",
577
+                "apellidoPaterno",
578
+                "apellidoMaterno",
579
+                "idRol",
580
+                "bloqueado",
581
+                "intentosdeLogeo"
582
+            })
583
+            public static class Usuario {
584
+
585
+                @XmlElement(name = "IdUsuario")
586
+                protected long idUsuario;
587
+                @XmlElement(name = "RUT", required = true)
588
+                protected String rut;
589
+                @XmlElement(name = "Nombres", required = true)
590
+                protected String nombres;
591
+                @XmlElement(name = "ApellidoPaterno", required = true)
592
+                protected String apellidoPaterno;
593
+                @XmlElement(name = "ApellidoMaterno", required = true)
594
+                protected String apellidoMaterno;
595
+                @XmlElement(name = "IdRol")
596
+                protected long idRol;
597
+                @XmlElement(name = "Bloqueado", required = true)
598
+                protected String bloqueado;
599
+                @XmlElement(name = "IntentosdeLogeo")
600
+                protected int intentosdeLogeo;
601
+
602
+                /**
603
+                 * Obtiene el valor de la propiedad idUsuario.
604
+                 * 
605
+                 */
606
+                public long getIdUsuario() {
607
+                    return idUsuario;
608
+                }
609
+
610
+                /**
611
+                 * Define el valor de la propiedad idUsuario.
612
+                 * 
613
+                 */
614
+                public void setIdUsuario(long value) {
615
+                    this.idUsuario = value;
616
+                }
617
+
618
+                /**
619
+                 * Obtiene el valor de la propiedad rut.
620
+                 * 
621
+                 * @return
622
+                 *     possible object is
623
+                 *     {@link String }
624
+                 *     
625
+                 */
626
+                public String getRUT() {
627
+                    return rut;
628
+                }
629
+
630
+                /**
631
+                 * Define el valor de la propiedad rut.
632
+                 * 
633
+                 * @param value
634
+                 *     allowed object is
635
+                 *     {@link String }
636
+                 *     
637
+                 */
638
+                public void setRUT(String value) {
639
+                    this.rut = value;
640
+                }
641
+
642
+                /**
643
+                 * Obtiene el valor de la propiedad nombres.
644
+                 * 
645
+                 * @return
646
+                 *     possible object is
647
+                 *     {@link String }
648
+                 *     
649
+                 */
650
+                public String getNombres() {
651
+                    return nombres;
652
+                }
653
+
654
+                /**
655
+                 * Define el valor de la propiedad nombres.
656
+                 * 
657
+                 * @param value
658
+                 *     allowed object is
659
+                 *     {@link String }
660
+                 *     
661
+                 */
662
+                public void setNombres(String value) {
663
+                    this.nombres = value;
664
+                }
665
+
666
+                /**
667
+                 * Obtiene el valor de la propiedad apellidoPaterno.
668
+                 * 
669
+                 * @return
670
+                 *     possible object is
671
+                 *     {@link String }
672
+                 *     
673
+                 */
674
+                public String getApellidoPaterno() {
675
+                    return apellidoPaterno;
676
+                }
677
+
678
+                /**
679
+                 * Define el valor de la propiedad apellidoPaterno.
680
+                 * 
681
+                 * @param value
682
+                 *     allowed object is
683
+                 *     {@link String }
684
+                 *     
685
+                 */
686
+                public void setApellidoPaterno(String value) {
687
+                    this.apellidoPaterno = value;
688
+                }
689
+
690
+                /**
691
+                 * Obtiene el valor de la propiedad apellidoMaterno.
692
+                 * 
693
+                 * @return
694
+                 *     possible object is
695
+                 *     {@link String }
696
+                 *     
697
+                 */
698
+                public String getApellidoMaterno() {
699
+                    return apellidoMaterno;
700
+                }
701
+
702
+                /**
703
+                 * Define el valor de la propiedad apellidoMaterno.
704
+                 * 
705
+                 * @param value
706
+                 *     allowed object is
707
+                 *     {@link String }
708
+                 *     
709
+                 */
710
+                public void setApellidoMaterno(String value) {
711
+                    this.apellidoMaterno = value;
712
+                }
713
+
714
+                /**
715
+                 * Obtiene el valor de la propiedad idRol.
716
+                 * 
717
+                 */
718
+                public long getIdRol() {
719
+                    return idRol;
720
+                }
721
+
722
+                /**
723
+                 * Define el valor de la propiedad idRol.
724
+                 * 
725
+                 */
726
+                public void setIdRol(long value) {
727
+                    this.idRol = value;
728
+                }
729
+
730
+                /**
731
+                 * Obtiene el valor de la propiedad bloqueado.
732
+                 * 
733
+                 * @return
734
+                 *     possible object is
735
+                 *     {@link String }
736
+                 *     
737
+                 */
738
+                public String getBloqueado() {
739
+                    return bloqueado;
740
+                }
741
+
742
+                /**
743
+                 * Define el valor de la propiedad bloqueado.
744
+                 * 
745
+                 * @param value
746
+                 *     allowed object is
747
+                 *     {@link String }
748
+                 *     
749
+                 */
750
+                public void setBloqueado(String value) {
751
+                    this.bloqueado = value;
752
+                }
753
+
754
+                /**
755
+                 * Obtiene el valor de la propiedad intentosdeLogeo.
756
+                 * 
757
+                 */
758
+                public int getIntentosdeLogeo() {
759
+                    return intentosdeLogeo;
760
+                }
761
+
762
+                /**
763
+                 * Define el valor de la propiedad intentosdeLogeo.
764
+                 * 
765
+                 */
766
+                public void setIntentosdeLogeo(int value) {
767
+                    this.intentosdeLogeo = value;
768
+                }
769
+
770
+            }
771
+
772
+        }
773
+
774
+    }
775
+
776
+}

+ 637 - 0
src/GenesisResponse/WorkstationByBranchListResponse.java 查看文件

@@ -0,0 +1,637 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 04:00:21 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_WorkstationByBranchListResponse;
10
+
11
+import java.util.ArrayList;
12
+import java.util.List;
13
+import javax.xml.bind.annotation.XmlAccessType;
14
+import javax.xml.bind.annotation.XmlAccessorType;
15
+import javax.xml.bind.annotation.XmlElement;
16
+import javax.xml.bind.annotation.XmlRootElement;
17
+import javax.xml.bind.annotation.XmlType;
18
+
19
+
20
+/**
21
+ * &lt;p&gt;Clase Java para anonymous complex type.
22
+ * 
23
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
24
+ * 
25
+ * &lt;pre&gt;
26
+ * &amp;lt;complexType&amp;gt;
27
+ *   &amp;lt;complexContent&amp;gt;
28
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
29
+ *       &amp;lt;sequence&amp;gt;
30
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
31
+ *           &amp;lt;complexType&amp;gt;
32
+ *             &amp;lt;complexContent&amp;gt;
33
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
34
+ *                 &amp;lt;sequence&amp;gt;
35
+ *                   &amp;lt;element name="Status"&amp;gt;
36
+ *                     &amp;lt;complexType&amp;gt;
37
+ *                       &amp;lt;complexContent&amp;gt;
38
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
39
+ *                           &amp;lt;sequence&amp;gt;
40
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
41
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
42
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
43
+ *                               &amp;lt;complexType&amp;gt;
44
+ *                                 &amp;lt;complexContent&amp;gt;
45
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
46
+ *                                     &amp;lt;sequence&amp;gt;
47
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
48
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
49
+ *                                     &amp;lt;/sequence&amp;gt;
50
+ *                                   &amp;lt;/restriction&amp;gt;
51
+ *                                 &amp;lt;/complexContent&amp;gt;
52
+ *                               &amp;lt;/complexType&amp;gt;
53
+ *                             &amp;lt;/element&amp;gt;
54
+ *                           &amp;lt;/sequence&amp;gt;
55
+ *                         &amp;lt;/restriction&amp;gt;
56
+ *                       &amp;lt;/complexContent&amp;gt;
57
+ *                     &amp;lt;/complexType&amp;gt;
58
+ *                   &amp;lt;/element&amp;gt;
59
+ *                   &amp;lt;element name="WSRs"&amp;gt;
60
+ *                     &amp;lt;complexType&amp;gt;
61
+ *                       &amp;lt;complexContent&amp;gt;
62
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
63
+ *                           &amp;lt;sequence&amp;gt;
64
+ *                             &amp;lt;element name="EstacionTrabajo" maxOccurs="unbounded" minOccurs="0"&amp;gt;
65
+ *                               &amp;lt;complexType&amp;gt;
66
+ *                                 &amp;lt;complexContent&amp;gt;
67
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
68
+ *                                     &amp;lt;sequence&amp;gt;
69
+ *                                       &amp;lt;element name="NumerodeEstacion" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
70
+ *                                       &amp;lt;element name="NombredeEstacion" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
71
+ *                                       &amp;lt;element name="Estado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
72
+ *                                     &amp;lt;/sequence&amp;gt;
73
+ *                                   &amp;lt;/restriction&amp;gt;
74
+ *                                 &amp;lt;/complexContent&amp;gt;
75
+ *                               &amp;lt;/complexType&amp;gt;
76
+ *                             &amp;lt;/element&amp;gt;
77
+ *                           &amp;lt;/sequence&amp;gt;
78
+ *                         &amp;lt;/restriction&amp;gt;
79
+ *                       &amp;lt;/complexContent&amp;gt;
80
+ *                     &amp;lt;/complexType&amp;gt;
81
+ *                   &amp;lt;/element&amp;gt;
82
+ *                 &amp;lt;/sequence&amp;gt;
83
+ *               &amp;lt;/restriction&amp;gt;
84
+ *             &amp;lt;/complexContent&amp;gt;
85
+ *           &amp;lt;/complexType&amp;gt;
86
+ *         &amp;lt;/element&amp;gt;
87
+ *       &amp;lt;/sequence&amp;gt;
88
+ *     &amp;lt;/restriction&amp;gt;
89
+ *   &amp;lt;/complexContent&amp;gt;
90
+ * &amp;lt;/complexType&amp;gt;
91
+ * &lt;/pre&gt;
92
+ * 
93
+ * 
94
+ */
95
+@XmlAccessorType(XmlAccessType.FIELD)
96
+@XmlType(name = "", propOrder = {
97
+    "bankSvcRs"
98
+})
99
+@XmlRootElement(name = "Genesis")
100
+public class WorkstationByBranchListResponse {
101
+
102
+    @XmlElement(name = "BankSvcRs", required = true)
103
+    protected WorkstationByBranchListResponse.BankSvcRs bankSvcRs;
104
+
105
+    /**
106
+     * Obtiene el valor de la propiedad bankSvcRs.
107
+     * 
108
+     * @return
109
+     *     possible object is
110
+     *     {@link Genesis.BankSvcRs }
111
+     *     
112
+     */
113
+    public WorkstationByBranchListResponse.BankSvcRs getBankSvcRs() {
114
+        return bankSvcRs;
115
+    }
116
+
117
+    /**
118
+     * Define el valor de la propiedad bankSvcRs.
119
+     * 
120
+     * @param value
121
+     *     allowed object is
122
+     *     {@link Genesis.BankSvcRs }
123
+     *     
124
+     */
125
+    public void setBankSvcRs(WorkstationByBranchListResponse.BankSvcRs value) {
126
+        this.bankSvcRs = value;
127
+    }
128
+
129
+
130
+    /**
131
+     * &lt;p&gt;Clase Java para anonymous complex type.
132
+     * 
133
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
134
+     * 
135
+     * &lt;pre&gt;
136
+     * &amp;lt;complexType&amp;gt;
137
+     *   &amp;lt;complexContent&amp;gt;
138
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
139
+     *       &amp;lt;sequence&amp;gt;
140
+     *         &amp;lt;element name="Status"&amp;gt;
141
+     *           &amp;lt;complexType&amp;gt;
142
+     *             &amp;lt;complexContent&amp;gt;
143
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
144
+     *                 &amp;lt;sequence&amp;gt;
145
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
146
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
147
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
148
+     *                     &amp;lt;complexType&amp;gt;
149
+     *                       &amp;lt;complexContent&amp;gt;
150
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
151
+     *                           &amp;lt;sequence&amp;gt;
152
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
153
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
154
+     *                           &amp;lt;/sequence&amp;gt;
155
+     *                         &amp;lt;/restriction&amp;gt;
156
+     *                       &amp;lt;/complexContent&amp;gt;
157
+     *                     &amp;lt;/complexType&amp;gt;
158
+     *                   &amp;lt;/element&amp;gt;
159
+     *                 &amp;lt;/sequence&amp;gt;
160
+     *               &amp;lt;/restriction&amp;gt;
161
+     *             &amp;lt;/complexContent&amp;gt;
162
+     *           &amp;lt;/complexType&amp;gt;
163
+     *         &amp;lt;/element&amp;gt;
164
+     *         &amp;lt;element name="WSRs"&amp;gt;
165
+     *           &amp;lt;complexType&amp;gt;
166
+     *             &amp;lt;complexContent&amp;gt;
167
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
168
+     *                 &amp;lt;sequence&amp;gt;
169
+     *                   &amp;lt;element name="EstacionTrabajo" maxOccurs="unbounded" minOccurs="0"&amp;gt;
170
+     *                     &amp;lt;complexType&amp;gt;
171
+     *                       &amp;lt;complexContent&amp;gt;
172
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
173
+     *                           &amp;lt;sequence&amp;gt;
174
+     *                             &amp;lt;element name="NumerodeEstacion" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
175
+     *                             &amp;lt;element name="NombredeEstacion" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
176
+     *                             &amp;lt;element name="Estado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
177
+     *                           &amp;lt;/sequence&amp;gt;
178
+     *                         &amp;lt;/restriction&amp;gt;
179
+     *                       &amp;lt;/complexContent&amp;gt;
180
+     *                     &amp;lt;/complexType&amp;gt;
181
+     *                   &amp;lt;/element&amp;gt;
182
+     *                 &amp;lt;/sequence&amp;gt;
183
+     *               &amp;lt;/restriction&amp;gt;
184
+     *             &amp;lt;/complexContent&amp;gt;
185
+     *           &amp;lt;/complexType&amp;gt;
186
+     *         &amp;lt;/element&amp;gt;
187
+     *       &amp;lt;/sequence&amp;gt;
188
+     *     &amp;lt;/restriction&amp;gt;
189
+     *   &amp;lt;/complexContent&amp;gt;
190
+     * &amp;lt;/complexType&amp;gt;
191
+     * &lt;/pre&gt;
192
+     * 
193
+     * 
194
+     */
195
+    @XmlAccessorType(XmlAccessType.FIELD)
196
+    @XmlType(name = "", propOrder = {
197
+        "status",
198
+        "wsRs"
199
+    })
200
+    public static class BankSvcRs {
201
+
202
+        @XmlElement(name = "Status", required = true)
203
+        protected WorkstationByBranchListResponse.BankSvcRs.Status status;
204
+        @XmlElement(name = "WSRs", required = true)
205
+        protected WorkstationByBranchListResponse.BankSvcRs.WSRs wsRs;
206
+
207
+        /**
208
+         * Obtiene el valor de la propiedad status.
209
+         * 
210
+         * @return
211
+         *     possible object is
212
+         *     {@link Genesis.BankSvcRs.Status }
213
+         *     
214
+         */
215
+        public WorkstationByBranchListResponse.BankSvcRs.Status getStatus() {
216
+            return status;
217
+        }
218
+
219
+        /**
220
+         * Define el valor de la propiedad status.
221
+         * 
222
+         * @param value
223
+         *     allowed object is
224
+         *     {@link Genesis.BankSvcRs.Status }
225
+         *     
226
+         */
227
+        public void setStatus(WorkstationByBranchListResponse.BankSvcRs.Status value) {
228
+            this.status = value;
229
+        }
230
+
231
+        /**
232
+         * Obtiene el valor de la propiedad wsRs.
233
+         * 
234
+         * @return
235
+         *     possible object is
236
+         *     {@link Genesis.BankSvcRs.WSRs }
237
+         *     
238
+         */
239
+        public WorkstationByBranchListResponse.BankSvcRs.WSRs getWSRs() {
240
+            return wsRs;
241
+        }
242
+
243
+        /**
244
+         * Define el valor de la propiedad wsRs.
245
+         * 
246
+         * @param value
247
+         *     allowed object is
248
+         *     {@link Genesis.BankSvcRs.WSRs }
249
+         *     
250
+         */
251
+        public void setWSRs(WorkstationByBranchListResponse.BankSvcRs.WSRs value) {
252
+            this.wsRs = value;
253
+        }
254
+
255
+
256
+        /**
257
+         * &lt;p&gt;Clase Java para anonymous complex type.
258
+         * 
259
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
260
+         * 
261
+         * &lt;pre&gt;
262
+         * &amp;lt;complexType&amp;gt;
263
+         *   &amp;lt;complexContent&amp;gt;
264
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
265
+         *       &amp;lt;sequence&amp;gt;
266
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
267
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
268
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
269
+         *           &amp;lt;complexType&amp;gt;
270
+         *             &amp;lt;complexContent&amp;gt;
271
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
272
+         *                 &amp;lt;sequence&amp;gt;
273
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
274
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
275
+         *                 &amp;lt;/sequence&amp;gt;
276
+         *               &amp;lt;/restriction&amp;gt;
277
+         *             &amp;lt;/complexContent&amp;gt;
278
+         *           &amp;lt;/complexType&amp;gt;
279
+         *         &amp;lt;/element&amp;gt;
280
+         *       &amp;lt;/sequence&amp;gt;
281
+         *     &amp;lt;/restriction&amp;gt;
282
+         *   &amp;lt;/complexContent&amp;gt;
283
+         * &amp;lt;/complexType&amp;gt;
284
+         * &lt;/pre&gt;
285
+         * 
286
+         * 
287
+         */
288
+        @XmlAccessorType(XmlAccessType.FIELD)
289
+        @XmlType(name = "", propOrder = {
290
+            "statusCode",
291
+            "statusDesc",
292
+            "additionalStatus"
293
+        })
294
+        public static class Status {
295
+
296
+            @XmlElement(name = "StatusCode", required = true)
297
+            protected String statusCode;
298
+            @XmlElement(name = "StatusDesc", required = true)
299
+            protected String statusDesc;
300
+            @XmlElement(name = "AdditionalStatus", required = true)
301
+            protected WorkstationByBranchListResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
302
+
303
+            /**
304
+             * Obtiene el valor de la propiedad statusCode.
305
+             * 
306
+             * @return
307
+             *     possible object is
308
+             *     {@link String }
309
+             *     
310
+             */
311
+            public String getStatusCode() {
312
+                return statusCode;
313
+            }
314
+
315
+            /**
316
+             * Define el valor de la propiedad statusCode.
317
+             * 
318
+             * @param value
319
+             *     allowed object is
320
+             *     {@link String }
321
+             *     
322
+             */
323
+            public void setStatusCode(String value) {
324
+                this.statusCode = value;
325
+            }
326
+
327
+            /**
328
+             * Obtiene el valor de la propiedad statusDesc.
329
+             * 
330
+             * @return
331
+             *     possible object is
332
+             *     {@link String }
333
+             *     
334
+             */
335
+            public String getStatusDesc() {
336
+                return statusDesc;
337
+            }
338
+
339
+            /**
340
+             * Define el valor de la propiedad statusDesc.
341
+             * 
342
+             * @param value
343
+             *     allowed object is
344
+             *     {@link String }
345
+             *     
346
+             */
347
+            public void setStatusDesc(String value) {
348
+                this.statusDesc = value;
349
+            }
350
+
351
+            /**
352
+             * Obtiene el valor de la propiedad additionalStatus.
353
+             * 
354
+             * @return
355
+             *     possible object is
356
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
357
+             *     
358
+             */
359
+            public WorkstationByBranchListResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
360
+                return additionalStatus;
361
+            }
362
+
363
+            /**
364
+             * Define el valor de la propiedad additionalStatus.
365
+             * 
366
+             * @param value
367
+             *     allowed object is
368
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
369
+             *     
370
+             */
371
+            public void setAdditionalStatus(WorkstationByBranchListResponse.BankSvcRs.Status.AdditionalStatus value) {
372
+                this.additionalStatus = value;
373
+            }
374
+
375
+
376
+            /**
377
+             * &lt;p&gt;Clase Java para anonymous complex type.
378
+             * 
379
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
380
+             * 
381
+             * &lt;pre&gt;
382
+             * &amp;lt;complexType&amp;gt;
383
+             *   &amp;lt;complexContent&amp;gt;
384
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
385
+             *       &amp;lt;sequence&amp;gt;
386
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
387
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
388
+             *       &amp;lt;/sequence&amp;gt;
389
+             *     &amp;lt;/restriction&amp;gt;
390
+             *   &amp;lt;/complexContent&amp;gt;
391
+             * &amp;lt;/complexType&amp;gt;
392
+             * &lt;/pre&gt;
393
+             * 
394
+             * 
395
+             */
396
+            @XmlAccessorType(XmlAccessType.FIELD)
397
+            @XmlType(name = "", propOrder = {
398
+                "statusCode",
399
+                "statusDesc"
400
+            })
401
+            public static class AdditionalStatus {
402
+
403
+                @XmlElement(name = "StatusCode", required = true)
404
+                protected String statusCode;
405
+                @XmlElement(name = "StatusDesc", required = true)
406
+                protected String statusDesc;
407
+
408
+                /**
409
+                 * Obtiene el valor de la propiedad statusCode.
410
+                 * 
411
+                 * @return
412
+                 *     possible object is
413
+                 *     {@link String }
414
+                 *     
415
+                 */
416
+                public String getStatusCode() {
417
+                    return statusCode;
418
+                }
419
+
420
+                /**
421
+                 * Define el valor de la propiedad statusCode.
422
+                 * 
423
+                 * @param value
424
+                 *     allowed object is
425
+                 *     {@link String }
426
+                 *     
427
+                 */
428
+                public void setStatusCode(String value) {
429
+                    this.statusCode = value;
430
+                }
431
+
432
+                /**
433
+                 * Obtiene el valor de la propiedad statusDesc.
434
+                 * 
435
+                 * @return
436
+                 *     possible object is
437
+                 *     {@link String }
438
+                 *     
439
+                 */
440
+                public String getStatusDesc() {
441
+                    return statusDesc;
442
+                }
443
+
444
+                /**
445
+                 * Define el valor de la propiedad statusDesc.
446
+                 * 
447
+                 * @param value
448
+                 *     allowed object is
449
+                 *     {@link String }
450
+                 *     
451
+                 */
452
+                public void setStatusDesc(String value) {
453
+                    this.statusDesc = value;
454
+                }
455
+
456
+            }
457
+
458
+        }
459
+
460
+
461
+        /**
462
+         * &lt;p&gt;Clase Java para anonymous complex type.
463
+         * 
464
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
465
+         * 
466
+         * &lt;pre&gt;
467
+         * &amp;lt;complexType&amp;gt;
468
+         *   &amp;lt;complexContent&amp;gt;
469
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
470
+         *       &amp;lt;sequence&amp;gt;
471
+         *         &amp;lt;element name="EstacionTrabajo" maxOccurs="unbounded" minOccurs="0"&amp;gt;
472
+         *           &amp;lt;complexType&amp;gt;
473
+         *             &amp;lt;complexContent&amp;gt;
474
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
475
+         *                 &amp;lt;sequence&amp;gt;
476
+         *                   &amp;lt;element name="NumerodeEstacion" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
477
+         *                   &amp;lt;element name="NombredeEstacion" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
478
+         *                   &amp;lt;element name="Estado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
479
+         *                 &amp;lt;/sequence&amp;gt;
480
+         *               &amp;lt;/restriction&amp;gt;
481
+         *             &amp;lt;/complexContent&amp;gt;
482
+         *           &amp;lt;/complexType&amp;gt;
483
+         *         &amp;lt;/element&amp;gt;
484
+         *       &amp;lt;/sequence&amp;gt;
485
+         *     &amp;lt;/restriction&amp;gt;
486
+         *   &amp;lt;/complexContent&amp;gt;
487
+         * &amp;lt;/complexType&amp;gt;
488
+         * &lt;/pre&gt;
489
+         * 
490
+         * 
491
+         */
492
+        @XmlAccessorType(XmlAccessType.FIELD)
493
+        @XmlType(name = "", propOrder = {
494
+            "estacionTrabajo"
495
+        })
496
+        public static class WSRs {
497
+
498
+            @XmlElement(name = "EstacionTrabajo")
499
+            protected List<WorkstationByBranchListResponse.BankSvcRs.WSRs.EstacionTrabajo> estacionTrabajo;
500
+
501
+            /**
502
+             * Gets the value of the estacionTrabajo property.
503
+             * 
504
+             * &lt;p&gt;
505
+             * This accessor method returns a reference to the live list,
506
+             * not a snapshot. Therefore any modification you make to the
507
+             * returned list will be present inside the JAXB object.
508
+             * This is why there is not a &lt;CODE&gt;set&lt;/CODE&gt; method for the estacionTrabajo property.
509
+             * 
510
+             * &lt;p&gt;
511
+             * For example, to add a new item, do as follows:
512
+             * &lt;pre&gt;
513
+             *    getEstacionTrabajo().add(newItem);
514
+             * &lt;/pre&gt;
515
+             * 
516
+             * 
517
+             * &lt;p&gt;
518
+             * Objects of the following type(s) are allowed in the list
519
+             * {@link Genesis.BankSvcRs.WSRs.EstacionTrabajo }
520
+             * 
521
+             * 
522
+             */
523
+            public List<WorkstationByBranchListResponse.BankSvcRs.WSRs.EstacionTrabajo> getEstacionTrabajo() {
524
+                if (estacionTrabajo == null) {
525
+                    estacionTrabajo = new ArrayList<WorkstationByBranchListResponse.BankSvcRs.WSRs.EstacionTrabajo>();
526
+                }
527
+                return this.estacionTrabajo;
528
+            }
529
+
530
+
531
+            /**
532
+             * &lt;p&gt;Clase Java para anonymous complex type.
533
+             * 
534
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
535
+             * 
536
+             * &lt;pre&gt;
537
+             * &amp;lt;complexType&amp;gt;
538
+             *   &amp;lt;complexContent&amp;gt;
539
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
540
+             *       &amp;lt;sequence&amp;gt;
541
+             *         &amp;lt;element name="NumerodeEstacion" type="{http://www.w3.org/2001/XMLSchema}int"/&amp;gt;
542
+             *         &amp;lt;element name="NombredeEstacion" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
543
+             *         &amp;lt;element name="Estado" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
544
+             *       &amp;lt;/sequence&amp;gt;
545
+             *     &amp;lt;/restriction&amp;gt;
546
+             *   &amp;lt;/complexContent&amp;gt;
547
+             * &amp;lt;/complexType&amp;gt;
548
+             * &lt;/pre&gt;
549
+             * 
550
+             * 
551
+             */
552
+            @XmlAccessorType(XmlAccessType.FIELD)
553
+            @XmlType(name = "", propOrder = {
554
+                "numerodeEstacion",
555
+                "nombredeEstacion",
556
+                "estado"
557
+            })
558
+            public static class EstacionTrabajo {
559
+
560
+                @XmlElement(name = "NumerodeEstacion")
561
+                protected int numerodeEstacion;
562
+                @XmlElement(name = "NombredeEstacion", required = true)
563
+                protected String nombredeEstacion;
564
+                @XmlElement(name = "Estado", required = true)
565
+                protected String estado;
566
+
567
+                /**
568
+                 * Obtiene el valor de la propiedad numerodeEstacion.
569
+                 * 
570
+                 */
571
+                public int getNumerodeEstacion() {
572
+                    return numerodeEstacion;
573
+                }
574
+
575
+                /**
576
+                 * Define el valor de la propiedad numerodeEstacion.
577
+                 * 
578
+                 */
579
+                public void setNumerodeEstacion(int value) {
580
+                    this.numerodeEstacion = value;
581
+                }
582
+
583
+                /**
584
+                 * Obtiene el valor de la propiedad nombredeEstacion.
585
+                 * 
586
+                 * @return
587
+                 *     possible object is
588
+                 *     {@link String }
589
+                 *     
590
+                 */
591
+                public String getNombredeEstacion() {
592
+                    return nombredeEstacion;
593
+                }
594
+
595
+                /**
596
+                 * Define el valor de la propiedad nombredeEstacion.
597
+                 * 
598
+                 * @param value
599
+                 *     allowed object is
600
+                 *     {@link String }
601
+                 *     
602
+                 */
603
+                public void setNombredeEstacion(String value) {
604
+                    this.nombredeEstacion = value;
605
+                }
606
+
607
+                /**
608
+                 * Obtiene el valor de la propiedad estado.
609
+                 * 
610
+                 * @return
611
+                 *     possible object is
612
+                 *     {@link String }
613
+                 *     
614
+                 */
615
+                public String getEstado() {
616
+                    return estado;
617
+                }
618
+
619
+                /**
620
+                 * Define el valor de la propiedad estado.
621
+                 * 
622
+                 * @param value
623
+                 *     allowed object is
624
+                 *     {@link String }
625
+                 *     
626
+                 */
627
+                public void setEstado(String value) {
628
+                    this.estado = value;
629
+                }
630
+
631
+            }
632
+
633
+        }
634
+
635
+    }
636
+
637
+}

+ 416 - 0
src/GenesisResponse/WorkstationMoveResponse.java 查看文件

@@ -0,0 +1,416 @@
1
+//
2
+// Este archivo ha sido generado por Eclipse Implementation of JAXB v2.3.3 
3
+// Visite https://eclipse-ee4j.github.io/jaxb-ri 
4
+// Todas las modificaciones realizadas en este archivo se perder�n si se vuelve a compilar el esquema de origen. 
5
+// Generado el: 2021.10.08 a las 04:07:08 PM COT 
6
+//
7
+
8
+
9
+package com.vespot_WorkstationMoveResponse;
10
+
11
+import javax.xml.bind.annotation.XmlAccessType;
12
+import javax.xml.bind.annotation.XmlAccessorType;
13
+import javax.xml.bind.annotation.XmlElement;
14
+import javax.xml.bind.annotation.XmlRootElement;
15
+import javax.xml.bind.annotation.XmlType;
16
+
17
+
18
+/**
19
+ * &lt;p&gt;Clase Java para anonymous complex type.
20
+ * 
21
+ * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
22
+ * 
23
+ * &lt;pre&gt;
24
+ * &amp;lt;complexType&amp;gt;
25
+ *   &amp;lt;complexContent&amp;gt;
26
+ *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
27
+ *       &amp;lt;sequence&amp;gt;
28
+ *         &amp;lt;element name="BankSvcRs"&amp;gt;
29
+ *           &amp;lt;complexType&amp;gt;
30
+ *             &amp;lt;complexContent&amp;gt;
31
+ *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
32
+ *                 &amp;lt;sequence&amp;gt;
33
+ *                   &amp;lt;element name="Status"&amp;gt;
34
+ *                     &amp;lt;complexType&amp;gt;
35
+ *                       &amp;lt;complexContent&amp;gt;
36
+ *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
37
+ *                           &amp;lt;sequence&amp;gt;
38
+ *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
39
+ *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
40
+ *                             &amp;lt;element name="AdditionalStatus"&amp;gt;
41
+ *                               &amp;lt;complexType&amp;gt;
42
+ *                                 &amp;lt;complexContent&amp;gt;
43
+ *                                   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
44
+ *                                     &amp;lt;sequence&amp;gt;
45
+ *                                       &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
46
+ *                                       &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
47
+ *                                     &amp;lt;/sequence&amp;gt;
48
+ *                                   &amp;lt;/restriction&amp;gt;
49
+ *                                 &amp;lt;/complexContent&amp;gt;
50
+ *                               &amp;lt;/complexType&amp;gt;
51
+ *                             &amp;lt;/element&amp;gt;
52
+ *                           &amp;lt;/sequence&amp;gt;
53
+ *                         &amp;lt;/restriction&amp;gt;
54
+ *                       &amp;lt;/complexContent&amp;gt;
55
+ *                     &amp;lt;/complexType&amp;gt;
56
+ *                   &amp;lt;/element&amp;gt;
57
+ *                   &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
58
+ *                 &amp;lt;/sequence&amp;gt;
59
+ *               &amp;lt;/restriction&amp;gt;
60
+ *             &amp;lt;/complexContent&amp;gt;
61
+ *           &amp;lt;/complexType&amp;gt;
62
+ *         &amp;lt;/element&amp;gt;
63
+ *       &amp;lt;/sequence&amp;gt;
64
+ *     &amp;lt;/restriction&amp;gt;
65
+ *   &amp;lt;/complexContent&amp;gt;
66
+ * &amp;lt;/complexType&amp;gt;
67
+ * &lt;/pre&gt;
68
+ * 
69
+ * 
70
+ */
71
+@XmlAccessorType(XmlAccessType.FIELD)
72
+@XmlType(name = "", propOrder = {
73
+    "bankSvcRs"
74
+})
75
+@XmlRootElement(name = "Genesis")
76
+public class WorkstationMoveResponse {
77
+
78
+    @XmlElement(name = "BankSvcRs", required = true)
79
+    protected WorkstationMoveResponse.BankSvcRs bankSvcRs;
80
+
81
+    /**
82
+     * Obtiene el valor de la propiedad bankSvcRs.
83
+     * 
84
+     * @return
85
+     *     possible object is
86
+     *     {@link Genesis.BankSvcRs }
87
+     *     
88
+     */
89
+    public WorkstationMoveResponse.BankSvcRs getBankSvcRs() {
90
+        return bankSvcRs;
91
+    }
92
+
93
+    /**
94
+     * Define el valor de la propiedad bankSvcRs.
95
+     * 
96
+     * @param value
97
+     *     allowed object is
98
+     *     {@link Genesis.BankSvcRs }
99
+     *     
100
+     */
101
+    public void setBankSvcRs(WorkstationMoveResponse.BankSvcRs value) {
102
+        this.bankSvcRs = value;
103
+    }
104
+
105
+
106
+    /**
107
+     * &lt;p&gt;Clase Java para anonymous complex type.
108
+     * 
109
+     * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
110
+     * 
111
+     * &lt;pre&gt;
112
+     * &amp;lt;complexType&amp;gt;
113
+     *   &amp;lt;complexContent&amp;gt;
114
+     *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
115
+     *       &amp;lt;sequence&amp;gt;
116
+     *         &amp;lt;element name="Status"&amp;gt;
117
+     *           &amp;lt;complexType&amp;gt;
118
+     *             &amp;lt;complexContent&amp;gt;
119
+     *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
120
+     *                 &amp;lt;sequence&amp;gt;
121
+     *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
122
+     *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
123
+     *                   &amp;lt;element name="AdditionalStatus"&amp;gt;
124
+     *                     &amp;lt;complexType&amp;gt;
125
+     *                       &amp;lt;complexContent&amp;gt;
126
+     *                         &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
127
+     *                           &amp;lt;sequence&amp;gt;
128
+     *                             &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
129
+     *                             &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
130
+     *                           &amp;lt;/sequence&amp;gt;
131
+     *                         &amp;lt;/restriction&amp;gt;
132
+     *                       &amp;lt;/complexContent&amp;gt;
133
+     *                     &amp;lt;/complexType&amp;gt;
134
+     *                   &amp;lt;/element&amp;gt;
135
+     *                 &amp;lt;/sequence&amp;gt;
136
+     *               &amp;lt;/restriction&amp;gt;
137
+     *             &amp;lt;/complexContent&amp;gt;
138
+     *           &amp;lt;/complexType&amp;gt;
139
+     *         &amp;lt;/element&amp;gt;
140
+     *         &amp;lt;element name="WSRs" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
141
+     *       &amp;lt;/sequence&amp;gt;
142
+     *     &amp;lt;/restriction&amp;gt;
143
+     *   &amp;lt;/complexContent&amp;gt;
144
+     * &amp;lt;/complexType&amp;gt;
145
+     * &lt;/pre&gt;
146
+     * 
147
+     * 
148
+     */
149
+    @XmlAccessorType(XmlAccessType.FIELD)
150
+    @XmlType(name = "", propOrder = {
151
+        "status",
152
+        "wsRs"
153
+    })
154
+    public static class BankSvcRs {
155
+
156
+        @XmlElement(name = "Status", required = true)
157
+        protected WorkstationMoveResponse.BankSvcRs.Status status;
158
+        @XmlElement(name = "WSRs", required = true)
159
+        protected String wsRs;
160
+
161
+        /**
162
+         * Obtiene el valor de la propiedad status.
163
+         * 
164
+         * @return
165
+         *     possible object is
166
+         *     {@link Genesis.BankSvcRs.Status }
167
+         *     
168
+         */
169
+        public WorkstationMoveResponse.BankSvcRs.Status getStatus() {
170
+            return status;
171
+        }
172
+
173
+        /**
174
+         * Define el valor de la propiedad status.
175
+         * 
176
+         * @param value
177
+         *     allowed object is
178
+         *     {@link Genesis.BankSvcRs.Status }
179
+         *     
180
+         */
181
+        public void setStatus(WorkstationMoveResponse.BankSvcRs.Status value) {
182
+            this.status = value;
183
+        }
184
+
185
+        /**
186
+         * Obtiene el valor de la propiedad wsRs.
187
+         * 
188
+         * @return
189
+         *     possible object is
190
+         *     {@link String }
191
+         *     
192
+         */
193
+        public String getWSRs() {
194
+            return wsRs;
195
+        }
196
+
197
+        /**
198
+         * Define el valor de la propiedad wsRs.
199
+         * 
200
+         * @param value
201
+         *     allowed object is
202
+         *     {@link String }
203
+         *     
204
+         */
205
+        public void setWSRs(String value) {
206
+            this.wsRs = value;
207
+        }
208
+
209
+
210
+        /**
211
+         * &lt;p&gt;Clase Java para anonymous complex type.
212
+         * 
213
+         * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
214
+         * 
215
+         * &lt;pre&gt;
216
+         * &amp;lt;complexType&amp;gt;
217
+         *   &amp;lt;complexContent&amp;gt;
218
+         *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
219
+         *       &amp;lt;sequence&amp;gt;
220
+         *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
221
+         *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
222
+         *         &amp;lt;element name="AdditionalStatus"&amp;gt;
223
+         *           &amp;lt;complexType&amp;gt;
224
+         *             &amp;lt;complexContent&amp;gt;
225
+         *               &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
226
+         *                 &amp;lt;sequence&amp;gt;
227
+         *                   &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
228
+         *                   &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
229
+         *                 &amp;lt;/sequence&amp;gt;
230
+         *               &amp;lt;/restriction&amp;gt;
231
+         *             &amp;lt;/complexContent&amp;gt;
232
+         *           &amp;lt;/complexType&amp;gt;
233
+         *         &amp;lt;/element&amp;gt;
234
+         *       &amp;lt;/sequence&amp;gt;
235
+         *     &amp;lt;/restriction&amp;gt;
236
+         *   &amp;lt;/complexContent&amp;gt;
237
+         * &amp;lt;/complexType&amp;gt;
238
+         * &lt;/pre&gt;
239
+         * 
240
+         * 
241
+         */
242
+        @XmlAccessorType(XmlAccessType.FIELD)
243
+        @XmlType(name = "", propOrder = {
244
+            "statusCode",
245
+            "statusDesc",
246
+            "additionalStatus"
247
+        })
248
+        public static class Status {
249
+
250
+            @XmlElement(name = "StatusCode", required = true)
251
+            protected String statusCode;
252
+            @XmlElement(name = "StatusDesc", required = true)
253
+            protected String statusDesc;
254
+            @XmlElement(name = "AdditionalStatus", required = true)
255
+            protected WorkstationMoveResponse.BankSvcRs.Status.AdditionalStatus additionalStatus;
256
+
257
+            /**
258
+             * Obtiene el valor de la propiedad statusCode.
259
+             * 
260
+             * @return
261
+             *     possible object is
262
+             *     {@link String }
263
+             *     
264
+             */
265
+            public String getStatusCode() {
266
+                return statusCode;
267
+            }
268
+
269
+            /**
270
+             * Define el valor de la propiedad statusCode.
271
+             * 
272
+             * @param value
273
+             *     allowed object is
274
+             *     {@link String }
275
+             *     
276
+             */
277
+            public void setStatusCode(String value) {
278
+                this.statusCode = value;
279
+            }
280
+
281
+            /**
282
+             * Obtiene el valor de la propiedad statusDesc.
283
+             * 
284
+             * @return
285
+             *     possible object is
286
+             *     {@link String }
287
+             *     
288
+             */
289
+            public String getStatusDesc() {
290
+                return statusDesc;
291
+            }
292
+
293
+            /**
294
+             * Define el valor de la propiedad statusDesc.
295
+             * 
296
+             * @param value
297
+             *     allowed object is
298
+             *     {@link String }
299
+             *     
300
+             */
301
+            public void setStatusDesc(String value) {
302
+                this.statusDesc = value;
303
+            }
304
+
305
+            /**
306
+             * Obtiene el valor de la propiedad additionalStatus.
307
+             * 
308
+             * @return
309
+             *     possible object is
310
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
311
+             *     
312
+             */
313
+            public WorkstationMoveResponse.BankSvcRs.Status.AdditionalStatus getAdditionalStatus() {
314
+                return additionalStatus;
315
+            }
316
+
317
+            /**
318
+             * Define el valor de la propiedad additionalStatus.
319
+             * 
320
+             * @param value
321
+             *     allowed object is
322
+             *     {@link Genesis.BankSvcRs.Status.AdditionalStatus }
323
+             *     
324
+             */
325
+            public void setAdditionalStatus(WorkstationMoveResponse.BankSvcRs.Status.AdditionalStatus value) {
326
+                this.additionalStatus = value;
327
+            }
328
+
329
+
330
+            /**
331
+             * &lt;p&gt;Clase Java para anonymous complex type.
332
+             * 
333
+             * &lt;p&gt;El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
334
+             * 
335
+             * &lt;pre&gt;
336
+             * &amp;lt;complexType&amp;gt;
337
+             *   &amp;lt;complexContent&amp;gt;
338
+             *     &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&amp;gt;
339
+             *       &amp;lt;sequence&amp;gt;
340
+             *         &amp;lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
341
+             *         &amp;lt;element name="StatusDesc" type="{http://www.w3.org/2001/XMLSchema}string"/&amp;gt;
342
+             *       &amp;lt;/sequence&amp;gt;
343
+             *     &amp;lt;/restriction&amp;gt;
344
+             *   &amp;lt;/complexContent&amp;gt;
345
+             * &amp;lt;/complexType&amp;gt;
346
+             * &lt;/pre&gt;
347
+             * 
348
+             * 
349
+             */
350
+            @XmlAccessorType(XmlAccessType.FIELD)
351
+            @XmlType(name = "", propOrder = {
352
+                "statusCode",
353
+                "statusDesc"
354
+            })
355
+            public static class AdditionalStatus {
356
+
357
+                @XmlElement(name = "StatusCode", required = true)
358
+                protected String statusCode;
359
+                @XmlElement(name = "StatusDesc", required = true)
360
+                protected String statusDesc;
361
+
362
+                /**
363
+                 * Obtiene el valor de la propiedad statusCode.
364
+                 * 
365
+                 * @return
366
+                 *     possible object is
367
+                 *     {@link String }
368
+                 *     
369
+                 */
370
+                public String getStatusCode() {
371
+                    return statusCode;
372
+                }
373
+
374
+                /**
375
+                 * Define el valor de la propiedad statusCode.
376
+                 * 
377
+                 * @param value
378
+                 *     allowed object is
379
+                 *     {@link String }
380
+                 *     
381
+                 */
382
+                public void setStatusCode(String value) {
383
+                    this.statusCode = value;
384
+                }
385
+
386
+                /**
387
+                 * Obtiene el valor de la propiedad statusDesc.
388
+                 * 
389
+                 * @return
390
+                 *     possible object is
391
+                 *     {@link String }
392
+                 *     
393
+                 */
394
+                public String getStatusDesc() {
395
+                    return statusDesc;
396
+                }
397
+
398
+                /**
399
+                 * Define el valor de la propiedad statusDesc.
400
+                 * 
401
+                 * @param value
402
+                 *     allowed object is
403
+                 *     {@link String }
404
+                 *     
405
+                 */
406
+                public void setStatusDesc(String value) {
407
+                    this.statusDesc = value;
408
+                }
409
+
410
+            }
411
+
412
+        }
413
+
414
+    }
415
+
416
+}

+ 25 - 0
src/META-INF/jax-ws-catalog.xml 查看文件

@@ -0,0 +1,25 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="system">
3
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/AddUserRequest.xsd" uri="xml-resources/jaxb/AddUserRequest/AddUserRequest.xsd"/>
4
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/AssignUpdateRoleByUserRequest.xsd" uri="xml-resources/jaxb/AssignUpdateRoleByUserRequest/AssignUpdateRoleByUserRequest.xsd"/>
5
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/BranchListRequest.xsd" uri="xml-resources/jaxb/BranchListRequest/BranchListRequest.xsd"/>
6
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/DeleteUserRequest.xsd" uri="xml-resources/jaxb/DeleteUserRequest/DeleteUserRequest.xsd"/>
7
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/RoleListRequest.xsd" uri="xml-resources/jaxb/RoleListRequest/RoleListRequest.xsd"/>
8
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/UpdateUserRequest.xsd" uri="xml-resources/jaxb/UpdateUserRequest/UpdateUserRequest.xsd"/>
9
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/UserBlockRequest.xsd" uri="xml-resources/jaxb/UserBlockRequest/UserBlockRequest.xsd"/>
10
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/UserListRequest.xsd" uri="xml-resources/jaxb/UserListRequest/UserListRequest.xsd"/>
11
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/WorkstationByBranchListRequest.xsd" uri="xml-resources/jaxb/WorkstationByBranchListRequest/WorkstationByBranchListRequest.xsd"/>
12
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../request/WorkstationMoveRequest.xsd" uri="xml-resources/jaxb/WorkstationMoveRequest/WorkstationMoveRequest.xsd"/>
13
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/AddUserResponse.xsd" uri="xml-resources/jaxb/AddUserResponse/AddUserResponse.xsd"/>
14
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/AssignUpdateRoleByUserResponse.xsd" uri="xml-resources/jaxb/AssignUpdateRoleByUserResponse/AssignUpdateRoleByUserResponse.xsd"/>
15
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/BranchListResponse.xsd" uri="xml-resources/jaxb/BranchListResponse/BranchListResponse.xsd"/>
16
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/DeleteUserResponse.xsd" uri="xml-resources/jaxb/DeleteUserResponse/DeleteUserResponse.xsd"/>
17
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/RoleListResponse.xsd" uri="xml-resources/jaxb/RoleListResponse/RoleListResponse.xsd"/>
18
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/UpdateUserResponse.xsd" uri="xml-resources/jaxb/UpdateUserResponse/UpdateUserResponse.xsd"/>
19
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/UserBlockResponse.xsd" uri="xml-resources/jaxb/UserBlockResponse/UserBlockResponse.xsd"/>
20
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/UserListResponse.xsd" uri="xml-resources/jaxb/UserListResponse/UserListResponse.xsd"/>
21
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/WorkstationByBranchListResponse.xsd" uri="xml-resources/jaxb/WorkstationByBranchListResponse/WorkstationByBranchListResponse.xsd"/>
22
+    <system systemId="file:/C:/Users/DESKTOP-IM6KTIJ/Documents/JAVA/GenesisAPI/../response/WorkstationMoveResponse.xsd" uri="xml-resources/jaxb/WorkstationMoveResponse/WorkstationMoveResponse.xsd"/>
23
+    <system systemId="file:/E:/genesisapi/GenesisAPI/../../JAVA/request/DeleteUserRequest.xsd" uri="xml-resources/jaxb/DeleteUserRequest/DeleteUserRequest.xsd"/>
24
+    <system systemId="file:/E:/GenesisServiceService.wsdl" uri="wsdl/GenesisServiceService.wsdl"/>
25
+</catalog>

+ 40 - 0
src/META-INF/wsdl/GenesisService.wsdl 查看文件

@@ -0,0 +1,40 @@
1
+<?xml version="1.0" encoding="UTF-8"?><definitions name="GenesisService" targetNamespace="http://xmlns.servipag.com/services/v1/GenesisService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://xmlns.servipag.com/services/v1/GenesisService" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+  <types>
3
+    <xsd:schema>
4
+      <xsd:import namespace="http://xmlns.servipag.com/services/v1/GenesisService" schemaLocation="GenesisService_schema1.xsd"/>
5
+    </xsd:schema>
6
+  </types>
7
+  <message name="genesisMethod">
8
+    <part element="tns:genesisMethod" name="parameters">
9
+    </part>
10
+  </message>
11
+  <message name="genesisMethodResponse">
12
+    <part element="tns:genesisMethodResponse" name="parameters">
13
+    </part>
14
+  </message>
15
+  <portType name="GenesisServiceImpl">
16
+    <operation name="genesisMethod">
17
+      <input message="tns:genesisMethod">
18
+    </input>
19
+      <output message="tns:genesisMethodResponse">
20
+    </output>
21
+    </operation>
22
+  </portType>
23
+  <binding name="GenesisServiceImplPortBinding" type="tns:GenesisServiceImpl">
24
+    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
25
+    <operation name="genesisMethod">
26
+      <soap:operation soapAction=""/>
27
+      <input>
28
+        <soap:body use="literal"/>
29
+      </input>
30
+      <output>
31
+        <soap:body use="literal"/>
32
+      </output>
33
+    </operation>
34
+  </binding>
35
+  <service name="GenesisService">
36
+    <port binding="tns:GenesisServiceImplPortBinding" name="GenesisServiceImplPort">
37
+      <soap:address location="http://localhost:9080/GenesisWS/GenesisService"/>
38
+    </port>
39
+  </service>
40
+</definitions>

+ 41 - 0
src/META-INF/wsdl/GenesisServiceService.wsdl 查看文件

@@ -0,0 +1,41 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<definitions name="GenesisServiceService" targetNamespace="http://webservices.genesis.servipag.cl/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://webservices.genesis.servipag.cl/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
3
+  <types>
4
+    <xsd:schema>
5
+      <xsd:import namespace="http://webservices.genesis.servipag.cl/" schemaLocation="GenesisServiceService_schema1.xsd"/>
6
+    </xsd:schema>
7
+  </types>
8
+  <message name="genesisMethodResponse">
9
+    <part name="parameters" element="tns:genesisMethodResponse">
10
+    </part>
11
+  </message>
12
+  <message name="genesisMethod">
13
+    <part name="parameters" element="tns:genesisMethod">
14
+    </part>
15
+  </message>
16
+  <portType name="GenesisServiceDelegate">
17
+    <operation name="genesisMethod">
18
+      <input message="tns:genesisMethod">
19
+    </input>
20
+      <output message="tns:genesisMethodResponse">
21
+    </output>
22
+    </operation>
23
+  </portType>
24
+  <binding name="GenesisServicePortBinding" type="tns:GenesisServiceDelegate">
25
+    <soap12:binding style="document" transport="http://www.w3.org/2003/05/soap/bindings/HTTP/"/>
26
+    <operation name="genesisMethod">
27
+      <soap12:operation soapAction=""/>
28
+      <input>
29
+        <soap12:body use="literal"/>
30
+      </input>
31
+      <output>
32
+        <soap12:body use="literal"/>
33
+      </output>
34
+    </operation>
35
+  </binding>
36
+  <service name="GenesisServiceService">
37
+    <port name="GenesisServicePort" binding="tns:GenesisServicePortBinding">
38
+      <soap12:address location="http://10.254.254.11:9081/GenesisWS/GenesisServiceService"/>
39
+    </port>
40
+  </service>
41
+</definitions>

+ 18 - 0
src/META-INF/wsdl/GenesisServiceService_schema1.xsd 查看文件

@@ -0,0 +1,18 @@
1
+<?xml version="1.0" encoding="UTF-8"?><xs:schema targetNamespace="http://webservices.genesis.servipag.cl/" version="1.0" xmlns:tns="http://webservices.genesis.servipag.cl/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
2
+
3
+  <xs:element name="genesisMethod" type="tns:genesisMethod"/>
4
+
5
+  <xs:element name="genesisMethodResponse" type="tns:genesisMethodResponse"/>
6
+
7
+  <xs:complexType name="genesisMethod">
8
+    <xs:sequence>
9
+      <xs:element minOccurs="0" name="arg0" type="xs:string"/>
10
+    </xs:sequence>
11
+  </xs:complexType>
12
+
13
+  <xs:complexType name="genesisMethodResponse">
14
+    <xs:sequence>
15
+      <xs:element minOccurs="0" name="return" type="xs:string"/>
16
+    </xs:sequence>
17
+  </xs:complexType>
18
+</xs:schema>

+ 18 - 0
src/META-INF/wsdl/GenesisService_schema1.xsd 查看文件

@@ -0,0 +1,18 @@
1
+<?xml version="1.0" encoding="UTF-8"?><xs:schema targetNamespace="http://xmlns.servipag.com/services/v1/GenesisService" version="1.0" xmlns:tns="http://xmlns.servipag.com/services/v1/GenesisService" xmlns:xs="http://www.w3.org/2001/XMLSchema">
2
+
3
+  <xs:element name="genesisMethod" type="tns:genesisMethod"/>
4
+
5
+  <xs:element name="genesisMethodResponse" type="tns:genesisMethodResponse"/>
6
+
7
+  <xs:complexType name="genesisMethod">
8
+    <xs:sequence>
9
+      <xs:element minOccurs="0" name="requestMessage" type="xs:string"/>
10
+    </xs:sequence>
11
+  </xs:complexType>
12
+
13
+  <xs:complexType name="genesisMethodResponse">
14
+    <xs:sequence>
15
+      <xs:element minOccurs="0" name="return" type="xs:string"/>
16
+    </xs:sequence>
17
+  </xs:complexType>
18
+</xs:schema>

+ 150 - 0
src/com/vespot/Genesis.java 查看文件

@@ -0,0 +1,150 @@
1
+package com.vespot;
2
+
3
+import cl.servipag.genesis.webservices.GenesisServiceDelegate;
4
+import cl.servipag.genesis.webservices.GenesisServiceService;
5
+import com.vespot.utils.Utils;
6
+import com.vespot_AssignUpdateRoleByUserRequest.AssignUpdateRoleByUserRequest;
7
+import com.vespot_AssignUpdateRoleByUserResponse.AssignUpdateRoleByUserResponse;
8
+
9
+import com.vespot_DeleteUserRequest.DeleteUserRequest;
10
+import com.vespot_DeleteUserResponse.DeleteUserResponse;
11
+import com.vespot_UserBlockRequest.UserBlockRequest;
12
+import com.vespot_UserBlockResponse.UserBlockResponse;
13
+import com.vespot_UserListRequest.UserListRequest;
14
+import com.vespot_WorkstationByBranchListRequest.WorkstationByBranchListRequest;
15
+import com.vespot_WorkstationByBranchListResponse.WorkstationByBranchListResponse;
16
+import com.vespot_WorkstationMoveRequest.WorkstationMoveRequest;
17
+import com.vespot_WorkstationMoveResponse.WorkstationMoveResponse;
18
+
19
+import java.net.MalformedURLException;
20
+import java.net.URL;
21
+import java.util.List;
22
+import java.util.logging.Level;
23
+
24
+
25
+public class Genesis {
26
+    
27
+    public Genesis(String URL){
28
+        this.URL=URL;
29
+    }
30
+
31
+private String URL;
32
+   
33
+    public String WorkstationMove(String gnsCodigoSucursalOrigen, String gnsCodigoSucursalDestino, String gnsNumeroEstacion) 
34
+    {
35
+        WorkstationMoveRequest stationM = new WorkstationMoveRequest();
36
+        
37
+        WorkstationMoveRequest.SignonRq signonR = new WorkstationMoveRequest.SignonRq();
38
+        signonR.setSessionLoginId(URL);
39
+        stationM.setSignonRq(signonR);
40
+        
41
+        WorkstationMoveRequest.BankSvcRq banqS = new WorkstationMoveRequest.BankSvcRq();
42
+        banqS.setGnsCodigoSucursalOrigen(Long.parseLong(gnsCodigoSucursalOrigen));
43
+        banqS.setGnsCodigoSucursalDestino(Long.parseLong(gnsCodigoSucursalDestino));
44
+        banqS.setGnsNumeroEstacion(Long.parseLong(gnsNumeroEstacion));
45
+        stationM.setBankSvcRq(banqS);
46
+        
47
+        try {
48
+            GenesisServiceService gservice = new GenesisServiceService(new URL(this.URL));
49
+            GenesisServiceDelegate gDelegate = gservice.getGenesisServicePort();
50
+            WorkstationMoveResponse responceMove = (WorkstationMoveResponse) Utils.xmlToObject(gDelegate.genesisMethod(Utils.objectToXml(stationM,WorkstationMoveRequest.class)), WorkstationMoveResponse.class);
51
+            return responceMove.getBankSvcRs().getStatus().getStatusCode();
52
+        } catch (MalformedURLException ex) {
53
+           java.util.logging.Logger.getLogger(Genesis.class.getName()).log(Level.SEVERE, null, ex);
54
+        return null;
55
+        }
56
+    }
57
+    
58
+    public List<WorkstationByBranchListResponse.BankSvcRs.WSRs.EstacionTrabajo> WorkstationByBranchList(String gnsCodigoSucursal)
59
+    {
60
+        WorkstationByBranchListRequest branchL = new WorkstationByBranchListRequest();
61
+        
62
+        WorkstationByBranchListRequest.SignonRq signonR = new WorkstationByBranchListRequest.SignonRq();
63
+        signonR.setSessionLoginId(URL);
64
+        branchL.setSignonRq(signonR);
65
+        
66
+        WorkstationByBranchListRequest.BankSvcRq banqS = new WorkstationByBranchListRequest.BankSvcRq();
67
+        banqS.setGnsCodigoSucursal(Long.parseLong(gnsCodigoSucursal));
68
+        branchL.setBankSvcRq(banqS);
69
+        
70
+        try {
71
+            GenesisServiceService gservice = new GenesisServiceService(new URL(this.URL));
72
+            GenesisServiceDelegate gDelegate = gservice.getGenesisServicePort();
73
+            WorkstationByBranchListResponse responceWorbe = (WorkstationByBranchListResponse) Utils.xmlToObject(gDelegate.genesisMethod(Utils.objectToXml(branchL,WorkstationByBranchListRequest.class)), WorkstationByBranchListResponse.class);
74
+            return (List<WorkstationByBranchListResponse.BankSvcRs.WSRs.EstacionTrabajo>) responceWorbe.getBankSvcRs().getStatus();
75
+        } catch (MalformedURLException ex) {
76
+           java.util.logging.Logger.getLogger(Genesis.class.getName()).log(Level.SEVERE, null, ex);
77
+        return null;
78
+        }
79
+    }
80
+    
81
+    public String UserBlock(String gnsIDUsuario, String gnsBloqueado) 
82
+    {
83
+        UserBlockRequest userB = new UserBlockRequest();
84
+        
85
+        UserBlockRequest.SignonRq signonR = new UserBlockRequest.SignonRq();
86
+        signonR.setSessionLoginId(URL);
87
+        userB.setSignonRq(signonR);
88
+        
89
+        UserBlockRequest.BankSvcRq banqS = new UserBlockRequest.BankSvcRq();
90
+        banqS.setGnsIDUsuario(Long.parseLong(gnsIDUsuario));
91
+        banqS.setGnsBloqueado(gnsBloqueado);
92
+        userB.setBankSvcRq(banqS);
93
+        
94
+        try {
95
+            GenesisServiceService gservice = new GenesisServiceService(new URL(this.URL));
96
+            GenesisServiceDelegate gDelegate = gservice.getGenesisServicePort();
97
+            UserBlockResponse responceBl = (UserBlockResponse) Utils.xmlToObject(gDelegate.genesisMethod(Utils.objectToXml(userB,UserListRequest.class)), UserBlockResponse.class);
98
+            return responceBl.getBankSvcRs().getStatus().getStatusDesc();
99
+        } catch (MalformedURLException ex) {
100
+           java.util.logging.Logger.getLogger(Genesis.class.getName()).log(Level.SEVERE, null, ex);
101
+        return null;
102
+        }
103
+    }
104
+    
105
+    public String DeleteUser(String gnsIDUsuario)
106
+    {
107
+        DeleteUserRequest deleteU = new DeleteUserRequest();
108
+        
109
+        DeleteUserRequest.SignonRq signonR = new DeleteUserRequest.SignonRq();
110
+        signonR.setSessionLoginId(URL);
111
+        deleteU.setSignonRq(signonR);
112
+        
113
+        DeleteUserRequest.BankSvcRq banqS = new DeleteUserRequest.BankSvcRq();
114
+        banqS.setGnsIDUsuario(Long.parseLong(gnsIDUsuario));
115
+        deleteU.setBankSvcRq(banqS);
116
+        
117
+        try {
118
+            GenesisServiceService gservice = new GenesisServiceService(new URL(this.URL));
119
+            GenesisServiceDelegate gDelegate = gservice.getGenesisServicePort();
120
+            DeleteUserResponse responceDu = (DeleteUserResponse) Utils.xmlToObject(gDelegate.genesisMethod(Utils.objectToXml(deleteU,DeleteUserRequest.class)), DeleteUserResponse.class);
121
+            return responceDu.getBankSvcRs().getStatus().getStatusDesc();
122
+        } catch (MalformedURLException ex) {
123
+           java.util.logging.Logger.getLogger(Genesis.class.getName()).log(Level.SEVERE, null, ex);
124
+        return null;
125
+        }
126
+    }
127
+    
128
+    public String AssignUpdateRoleByUser(String gnsIDUsuario, String gnsIDRol){
129
+        AssignUpdateRoleByUserRequest asignUr = new AssignUpdateRoleByUserRequest();
130
+        
131
+        AssignUpdateRoleByUserRequest.SignonRq signonR = new AssignUpdateRoleByUserRequest.SignonRq();
132
+        signonR.setSessionLoginId(URL);
133
+        asignUr.setSignonRq(signonR);
134
+        
135
+        AssignUpdateRoleByUserRequest.BankSvcRq banqS = new AssignUpdateRoleByUserRequest.BankSvcRq();
136
+        banqS.setGnsIDRol(Long.parseLong(gnsIDRol));
137
+        banqS.setGnsIDUsuario(Long.parseLong(gnsIDUsuario));
138
+        asignUr.setBankSvcRq(banqS);
139
+        
140
+        try {
141
+            GenesisServiceService gservice = new GenesisServiceService(new URL(this.URL));
142
+            GenesisServiceDelegate gDelegate = gservice.getGenesisServicePort();
143
+            AssignUpdateRoleByUserResponse responceAs = (AssignUpdateRoleByUserResponse) Utils.xmlToObject(gDelegate.genesisMethod(Utils.objectToXml(asignUr,AssignUpdateRoleByUserRequest.class)), AssignUpdateRoleByUserResponse.class);
144
+            return responceAs.getBankSvcRs().getStatus().getStatusDesc();
145
+        } catch (MalformedURLException ex) {
146
+           java.util.logging.Logger.getLogger(Genesis.class.getName()).log(Level.SEVERE, null, ex);
147
+        return null;
148
+        }
149
+    }
150
+}

+ 52 - 0
src/com/vespot/utils/Utils.java 查看文件

@@ -0,0 +1,52 @@
1
+/*
2
+ * To change this license header, choose License Headers in Project Properties.
3
+ * To change this template file, choose Tools | Templates
4
+ * and open the template in the editor.
5
+ */
6
+package com.vespot.utils;
7
+
8
+import java.io.ByteArrayInputStream;
9
+import java.io.InputStream;
10
+import java.io.StringWriter;
11
+import java.util.logging.Level;
12
+import java.util.logging.Logger;
13
+import javax.xml.bind.JAXBContext;
14
+import javax.xml.bind.JAXBException;
15
+import javax.xml.bind.Marshaller;
16
+import javax.xml.bind.Unmarshaller;
17
+
18
+/**
19
+ *
20
+ * @author aleja
21
+ */
22
+public class Utils {
23
+    
24
+    public static String objectToXml(Object obj, Class c) {
25
+        try {
26
+            JAXBContext context = JAXBContext.newInstance(c);
27
+            Marshaller marshaller = context.createMarshaller();
28
+            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
29
+            StringWriter writer = new StringWriter();
30
+            marshaller.marshal(c.cast(obj), writer);
31
+            return writer.toString();
32
+        } catch (JAXBException ex) {
33
+            Logger.getLogger(Utils.class.getName()).log(Level.SEVERE, null, ex);
34
+        }
35
+        
36
+        return null;
37
+    }
38
+    
39
+    public static Object xmlToObject(String content, Class c) {
40
+        try {
41
+            JAXBContext context = JAXBContext.newInstance(c);
42
+            Unmarshaller unmarsheller = context.createUnmarshaller();
43
+            InputStream stream = new ByteArrayInputStream(content.getBytes());
44
+            return c.cast(unmarsheller.unmarshal(stream));
45
+        } catch (JAXBException ex) {
46
+            Logger.getLogger(Utils.class.getName()).log(Level.SEVERE, null, ex);
47
+        }
48
+        
49
+        return null;
50
+    }
51
+    
52
+}

+ 41 - 0
xml-resources/web-service-references/GenesisServiceService/wsdl/GenesisServiceService.wsdl 查看文件

@@ -0,0 +1,41 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<definitions name="GenesisServiceService" targetNamespace="http://webservices.genesis.servipag.cl/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://webservices.genesis.servipag.cl/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
3
+  <types>
4
+    <xsd:schema>
5
+      <xsd:import namespace="http://webservices.genesis.servipag.cl/" schemaLocation="GenesisServiceService_schema1.xsd"/>
6
+    </xsd:schema>
7
+  </types>
8
+  <message name="genesisMethodResponse">
9
+    <part name="parameters" element="tns:genesisMethodResponse">
10
+    </part>
11
+  </message>
12
+  <message name="genesisMethod">
13
+    <part name="parameters" element="tns:genesisMethod">
14
+    </part>
15
+  </message>
16
+  <portType name="GenesisServiceDelegate">
17
+    <operation name="genesisMethod">
18
+      <input message="tns:genesisMethod">
19
+    </input>
20
+      <output message="tns:genesisMethodResponse">
21
+    </output>
22
+    </operation>
23
+  </portType>
24
+  <binding name="GenesisServicePortBinding" type="tns:GenesisServiceDelegate">
25
+    <soap12:binding style="document" transport="http://www.w3.org/2003/05/soap/bindings/HTTP/"/>
26
+    <operation name="genesisMethod">
27
+      <soap12:operation soapAction=""/>
28
+      <input>
29
+        <soap12:body use="literal"/>
30
+      </input>
31
+      <output>
32
+        <soap12:body use="literal"/>
33
+      </output>
34
+    </operation>
35
+  </binding>
36
+  <service name="GenesisServiceService">
37
+    <port name="GenesisServicePort" binding="tns:GenesisServicePortBinding">
38
+      <soap12:address location="http://10.254.254.11:9081/GenesisWS/GenesisServiceService"/>
39
+    </port>
40
+  </service>
41
+</definitions>

+ 18 - 0
xml-resources/web-service-references/GenesisServiceService/wsdl/GenesisServiceService_schema1.xsd 查看文件

@@ -0,0 +1,18 @@
1
+<?xml version="1.0" encoding="UTF-8"?><xs:schema targetNamespace="http://webservices.genesis.servipag.cl/" version="1.0" xmlns:tns="http://webservices.genesis.servipag.cl/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
2
+
3
+  <xs:element name="genesisMethod" type="tns:genesisMethod"/>
4
+
5
+  <xs:element name="genesisMethodResponse" type="tns:genesisMethodResponse"/>
6
+
7
+  <xs:complexType name="genesisMethod">
8
+    <xs:sequence>
9
+      <xs:element minOccurs="0" name="arg0" type="xs:string"/>
10
+    </xs:sequence>
11
+  </xs:complexType>
12
+
13
+  <xs:complexType name="genesisMethodResponse">
14
+    <xs:sequence>
15
+      <xs:element minOccurs="0" name="return" type="xs:string"/>
16
+    </xs:sequence>
17
+  </xs:complexType>
18
+</xs:schema>