From a6372ebbf860a0121626dd98f30284d6ba1e2e6e Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Sat, 1 Apr 2023 14:27:41 -0300 Subject: [PATCH 01/25] Add CI/CD e ajustes network para ambiente local --- .gitlab-ci.yml | 123 +++++++++++++++++++++++++++++++++++++++++++++ docker-compose.yml | 1 + 2 files changed, 124 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..4229a149c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,123 @@ +variables: + PROJECT_NAME: esocial-jt + REGISTRY_HOST: os311-registry.tjdft.jus.br + REGISTRY_USER: builder + IMAGE_NAME_STAGE: esocial-stage + IMAGE_NAME_PRODUCTION: esocial-production +stages: + - build + - deploy + +############################ +### TEMPLATE PARA DEPLOY +############################ +.template_deploy: &template_deploy + image: nexuspull.tjdft.jus.br/kaniko-project/executor:debug + stage: deploy + script: + - echo "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" + - mkdir -p /kaniko/.docker + - echo "{\"auths\":{\"${REGISTRY_HOST}\":{\"auth\":\"$(printf "%s:%s" "${REGISTRY_USER}" "${SA_USER_TOKEN}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json + - >- + /kaniko/executor + --context "${CONTEXT_DIR}" + --dockerfile "${DOCKERFILE_DIR}" + --build-arg "release='${CI_COMMIT_SHA}'" + --destination "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" + +build_backend: + image: adoptopenjdk/maven-openjdk8 + stage: build + only: + - master + - tags + script: + - cd src/ + - mvn -B verify + artifacts: + when: on_success + paths: + - ${CI_PROJECT_DIR}/src/esocial-jt-service/target + expire_in: 1 day + +build_frontend: + image: node:16-bullseye + stage: build + only: + - master + - tags + script: + - cd frontend/ + - yarn install --frozen-lockfile + - yarn lint + - yarn test + - yarn build + artifacts: + when: on_success + paths: + - frontend/build + expire_in: 1 day + dependencies: + - build_backend + +deploy_backend_desenv: + <<: *template_deploy + only: + - master + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/src + IMAGE_NAME: ${IMAGE_NAME_STAGE} + SERVICE_NAME: esocial-jt-backend + IMAGE_TAG: desenv + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE + dependencies: + - build_backend + +deploy_frontend_desenv: + <<: *template_deploy + only: + - master + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend + IMAGE_NAME: ${IMAGE_NAME_STAGE} + SERVICE_NAME: esocial-jt-frontend + IMAGE_TAG: desenv + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE + dependencies: + - build_backend + - build_frontend + +deploy_backend_prod: + <<: *template_deploy + only: + - tags + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/src + IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} + SERVICE_NAME: esocial-jt-backend + IMAGE_TAG: production + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_PROD + dependencies: + - build_backend + +deploy_frontend_prod: + <<: *template_deploy + only: + - tags + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend + IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} + SERVICE_NAME: esocial-jt-frontend + IMAGE_TAG: production + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_PROD + dependencies: + - build_backend + - build_frontend diff --git a/docker-compose.yml b/docker-compose.yml index 8c1806fb5..2bd6f3081 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -38,4 +38,5 @@ services: networks: esocial-net: + name: esocial-net driver: bridge From e31b6afc67999660593fe190ebd107cbdada925e Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Mon, 10 Apr 2023 21:23:22 +0000 Subject: [PATCH 02/25] Update SecurityConfigDisable.java para evitar problema http 403 --- .../main/java/br/jus/tst/esocialjt/SecurityConfigDisable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/esocial-jt-service/src/main/java/br/jus/tst/esocialjt/SecurityConfigDisable.java b/src/esocial-jt-service/src/main/java/br/jus/tst/esocialjt/SecurityConfigDisable.java index 4db7aaa37..f893967c7 100644 --- a/src/esocial-jt-service/src/main/java/br/jus/tst/esocialjt/SecurityConfigDisable.java +++ b/src/esocial-jt-service/src/main/java/br/jus/tst/esocialjt/SecurityConfigDisable.java @@ -10,7 +10,7 @@ public class SecurityConfigDisable extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity httpSecurity) throws Exception { - httpSecurity + httpSecurity.cors().and().csrf().disable() .authorizeRequests() .antMatchers("/") .permitAll(); From cd3b0fabdbbd40c154c7ae5da2f050c45af31205 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Mon, 22 May 2023 11:29:14 +0000 Subject: [PATCH 03/25] Update .gitlab-ci.yml --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4229a149c..cf8e8c7c3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,8 @@ variables: PROJECT_NAME: esocial-jt REGISTRY_HOST: os311-registry.tjdft.jus.br REGISTRY_USER: builder - IMAGE_NAME_STAGE: esocial-stage - IMAGE_NAME_PRODUCTION: esocial-production + IMAGE_NAME_STAGE: esocialapp-stage + IMAGE_NAME_PRODUCTION: esocialapp-production stages: - build - deploy From 073e63008b03649cac657116d12593d6e974d6ac Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Fri, 29 Sep 2023 15:03:45 -0300 Subject: [PATCH 04/25] =?UTF-8?q?Atualiza=C3=A7=C3=A3o=20CI/CD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf8e8c7c3..f7f206a05 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ stages: ### TEMPLATE PARA DEPLOY ############################ .template_deploy: &template_deploy - image: nexuspull.tjdft.jus.br/kaniko-project/executor:debug + image: kaniko-project/executor:debug stage: deploy script: - echo "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" From 039f4e10556496484b0337c34f98e770dbe059b7 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Sat, 28 Oct 2023 17:55:04 +0000 Subject: [PATCH 05/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f7f206a05..fd689e72f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,8 +29,8 @@ build_backend: image: adoptopenjdk/maven-openjdk8 stage: build only: - - master - - tags + - $CI_COMMIT_TAG =~ /^stage-.*$/ + - $CI_COMMIT_TAG =~ /^production-.*$/ script: - cd src/ - mvn -B verify @@ -43,9 +43,9 @@ build_backend: build_frontend: image: node:16-bullseye stage: build - only: - - master - - tags + only: + - $CI_COMMIT_TAG =~ /^stage-.*$/ + - $CI_COMMIT_TAG =~ /^production-.*$/ script: - cd frontend/ - yarn install --frozen-lockfile @@ -63,7 +63,7 @@ build_frontend: deploy_backend_desenv: <<: *template_deploy only: - - master + - $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/src @@ -77,8 +77,8 @@ deploy_backend_desenv: deploy_frontend_desenv: <<: *template_deploy - only: - - master + only: + - $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend @@ -94,7 +94,7 @@ deploy_frontend_desenv: deploy_backend_prod: <<: *template_deploy only: - - tags + - $CI_COMMIT_TAG =~ /^production-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/src @@ -109,7 +109,7 @@ deploy_backend_prod: deploy_frontend_prod: <<: *template_deploy only: - - tags + - $CI_COMMIT_TAG =~ /^production-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend From 08a1c623c6dafc2826681693c11924eb5736ca2f Mon Sep 17 00:00:00 2001 From: Rodrigo Austin Cascao Date: Mon, 30 Oct 2023 20:32:53 +0000 Subject: [PATCH 06/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fd689e72f..d81210d65 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,9 +28,9 @@ stages: build_backend: image: adoptopenjdk/maven-openjdk8 stage: build - only: - - $CI_COMMIT_TAG =~ /^stage-.*$/ - - $CI_COMMIT_TAG =~ /^production-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^stage-.*$/ + - if: $CI_COMMIT_TAG =~ /^production-.*$/ script: - cd src/ - mvn -B verify @@ -43,9 +43,9 @@ build_backend: build_frontend: image: node:16-bullseye stage: build - only: - - $CI_COMMIT_TAG =~ /^stage-.*$/ - - $CI_COMMIT_TAG =~ /^production-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^stage-.*$/ + - if: $CI_COMMIT_TAG =~ /^production-.*$/ script: - cd frontend/ - yarn install --frozen-lockfile @@ -62,8 +62,8 @@ build_frontend: deploy_backend_desenv: <<: *template_deploy - only: - - $CI_COMMIT_TAG =~ /^stage-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/src @@ -77,8 +77,8 @@ deploy_backend_desenv: deploy_frontend_desenv: <<: *template_deploy - only: - - $CI_COMMIT_TAG =~ /^stage-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend @@ -93,8 +93,8 @@ deploy_frontend_desenv: deploy_backend_prod: <<: *template_deploy - only: - - $CI_COMMIT_TAG =~ /^production-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^production-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/src @@ -108,8 +108,8 @@ deploy_backend_prod: deploy_frontend_prod: <<: *template_deploy - only: - - $CI_COMMIT_TAG =~ /^production-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^production-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend From 51288228e90bb57219d87b9a1e988be9498bbba5 Mon Sep 17 00:00:00 2001 From: Rodrigo Austin Cascao Date: Mon, 30 Oct 2023 20:47:33 +0000 Subject: [PATCH 07/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d81210d65..1dc1c7510 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,9 +28,8 @@ stages: build_backend: image: adoptopenjdk/maven-openjdk8 stage: build - rules: - - if: $CI_COMMIT_TAG =~ /^stage-.*$/ - - if: $CI_COMMIT_TAG =~ /^production-.*$/ + only: + - tags script: - cd src/ - mvn -B verify @@ -43,9 +42,8 @@ build_backend: build_frontend: image: node:16-bullseye stage: build - rules: - - if: $CI_COMMIT_TAG =~ /^stage-.*$/ - - if: $CI_COMMIT_TAG =~ /^production-.*$/ + only: + - tags script: - cd frontend/ - yarn install --frozen-lockfile From 83983f673553428ca917354f2b3ec9385dbc6f4b Mon Sep 17 00:00:00 2001 From: Rodrigo Austin Cascao Date: Mon, 30 Oct 2023 21:01:53 +0000 Subject: [PATCH 08/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 58 +++++++++++++++++++++++++------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1dc1c7510..2b3d90139 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -89,33 +89,33 @@ deploy_frontend_desenv: - build_backend - build_frontend -deploy_backend_prod: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^production-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/src - IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} - SERVICE_NAME: esocial-jt-backend - IMAGE_TAG: production - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_PROD - dependencies: - - build_backend +# deploy_backend_prod: +# <<: *template_deploy +# rules: +# - if: $CI_COMMIT_TAG =~ /^production-.*$/ +# variables: +# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile +# CONTEXT_DIR: ${CI_PROJECT_DIR}/src +# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} +# SERVICE_NAME: esocial-jt-backend +# IMAGE_TAG: production +# before_script: +# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD +# dependencies: +# - build_backend -deploy_frontend_prod: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^production-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend - IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} - SERVICE_NAME: esocial-jt-frontend - IMAGE_TAG: production - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_PROD - dependencies: - - build_backend - - build_frontend +# deploy_frontend_prod: +# <<: *template_deploy +# rules: +# - if: $CI_COMMIT_TAG =~ /^production-.*$/ +# variables: +# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile +# CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend +# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} +# SERVICE_NAME: esocial-jt-frontend +# IMAGE_TAG: production +# before_script: +# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD +# dependencies: +# - build_backend +# - build_frontend From 6dc6e03a9f6f7c39e0b8ea703412d05f68c82733 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Mon, 30 Oct 2023 21:09:29 +0000 Subject: [PATCH 09/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 70 ++++++++++++++++++++++++++------------------------ 1 file changed, 37 insertions(+), 33 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b3d90139..76e02d2c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,8 +60,9 @@ build_frontend: deploy_backend_desenv: <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^stage-.*$/ + only: + variables: + - $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/src @@ -75,8 +76,9 @@ deploy_backend_desenv: deploy_frontend_desenv: <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^stage-.*$/ + only: + variables: + - $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend @@ -89,33 +91,35 @@ deploy_frontend_desenv: - build_backend - build_frontend -# deploy_backend_prod: -# <<: *template_deploy -# rules: -# - if: $CI_COMMIT_TAG =~ /^production-.*$/ -# variables: -# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile -# CONTEXT_DIR: ${CI_PROJECT_DIR}/src -# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} -# SERVICE_NAME: esocial-jt-backend -# IMAGE_TAG: production -# before_script: -# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD -# dependencies: -# - build_backend +deploy_backend_prod: + <<: *template_deploy + only: + variables: + - $CI_COMMIT_TAG =~ /^production-.*$/ + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/src + IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} + SERVICE_NAME: esocial-jt-backend + IMAGE_TAG: production + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_PROD + dependencies: + - build_backend -# deploy_frontend_prod: -# <<: *template_deploy -# rules: -# - if: $CI_COMMIT_TAG =~ /^production-.*$/ -# variables: -# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile -# CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend -# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} -# SERVICE_NAME: esocial-jt-frontend -# IMAGE_TAG: production -# before_script: -# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD -# dependencies: -# - build_backend -# - build_frontend +deploy_frontend_prod: + <<: *template_deploy + only: + variables: + - $CI_COMMIT_TAG =~ /^production-.*$/ + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend + IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} + SERVICE_NAME: esocial-jt-frontend + IMAGE_TAG: production + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_PROD + dependencies: + - build_backend + - build_frontend From 2549ffb16c1b3f7641ef3be7c630f4a38eff225a Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Mon, 30 Oct 2023 21:15:52 +0000 Subject: [PATCH 10/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 76e02d2c0..3538a0ea8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,6 +31,7 @@ build_backend: only: - tags script: + - echo "The job's stage is '$CI_COMMIT_TAG'" - cd src/ - mvn -B verify artifacts: From 35e433fef02a631927b827f3e013a9f43348f3ac Mon Sep 17 00:00:00 2001 From: Rodrigo Austin Cascao Date: Mon, 30 Oct 2023 21:27:11 +0000 Subject: [PATCH 11/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 62 +++++++++++++++++++++++++------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3538a0ea8..7573308c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -92,35 +92,35 @@ deploy_frontend_desenv: - build_backend - build_frontend -deploy_backend_prod: - <<: *template_deploy - only: - variables: - - $CI_COMMIT_TAG =~ /^production-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/src - IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} - SERVICE_NAME: esocial-jt-backend - IMAGE_TAG: production - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_PROD - dependencies: - - build_backend +# deploy_backend_prod: +# <<: *template_deploy +# only: +# variables: +# - $CI_COMMIT_TAG =~ /^production-.*$/ +# variables: +# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile +# CONTEXT_DIR: ${CI_PROJECT_DIR}/src +# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} +# SERVICE_NAME: esocial-jt-backend +# IMAGE_TAG: production +# before_script: +# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD +# dependencies: +# - build_backend -deploy_frontend_prod: - <<: *template_deploy - only: - variables: - - $CI_COMMIT_TAG =~ /^production-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend - IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} - SERVICE_NAME: esocial-jt-frontend - IMAGE_TAG: production - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_PROD - dependencies: - - build_backend - - build_frontend +# deploy_frontend_prod: +# <<: *template_deploy +# only: +# variables: +# - $CI_COMMIT_TAG =~ /^production-.*$/ +# variables: +# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile +# CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend +# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} +# SERVICE_NAME: esocial-jt-frontend +# IMAGE_TAG: production +# before_script: +# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD +# dependencies: +# - build_backend +# - build_frontend From 33b136a49ed7490000b0cf3c198fb2379b68de59 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Mon, 30 Oct 2023 21:39:44 +0000 Subject: [PATCH 12/25] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 73 +++++++++++++++++++++++--------------------------- 1 file changed, 34 insertions(+), 39 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7573308c1..dd0e00fe5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,7 +31,6 @@ build_backend: only: - tags script: - - echo "The job's stage is '$CI_COMMIT_TAG'" - cd src/ - mvn -B verify artifacts: @@ -43,7 +42,7 @@ build_backend: build_frontend: image: node:16-bullseye stage: build - only: + only: - tags script: - cd frontend/ @@ -61,9 +60,8 @@ build_frontend: deploy_backend_desenv: <<: *template_deploy - only: - variables: - - $CI_COMMIT_TAG =~ /^stage-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/src @@ -77,9 +75,8 @@ deploy_backend_desenv: deploy_frontend_desenv: <<: *template_deploy - only: - variables: - - $CI_COMMIT_TAG =~ /^stage-.*$/ + rules: + - if: $CI_COMMIT_TAG =~ /^stage-.*$/ variables: DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend @@ -92,35 +89,33 @@ deploy_frontend_desenv: - build_backend - build_frontend -# deploy_backend_prod: -# <<: *template_deploy -# only: -# variables: -# - $CI_COMMIT_TAG =~ /^production-.*$/ -# variables: -# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile -# CONTEXT_DIR: ${CI_PROJECT_DIR}/src -# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} -# SERVICE_NAME: esocial-jt-backend -# IMAGE_TAG: production -# before_script: -# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD -# dependencies: -# - build_backend +deploy_backend_prod: + <<: *template_deploy + rules: + - if: $CI_COMMIT_TAG =~ /^production-.*$/ + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/src + IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} + SERVICE_NAME: esocial-jt-backend + IMAGE_TAG: production + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_PROD + dependencies: + - build_backend -# deploy_frontend_prod: -# <<: *template_deploy -# only: -# variables: -# - $CI_COMMIT_TAG =~ /^production-.*$/ -# variables: -# DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile -# CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend -# IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} -# SERVICE_NAME: esocial-jt-frontend -# IMAGE_TAG: production -# before_script: -# - SA_USER_TOKEN=$SA_USER_TOKEN_PROD -# dependencies: -# - build_backend -# - build_frontend +deploy_frontend_prod: + <<: *template_deploy + rules: + - if: $CI_COMMIT_TAG =~ /^production-.*$/ + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend + IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} + SERVICE_NAME: esocial-jt-frontend + IMAGE_TAG: production + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_PROD + dependencies: + - build_backend + - build_frontend From 3fc432f420d9d91ca73378df76b16e5d74a6a6b0 Mon Sep 17 00:00:00 2001 From: Mauricio Fagundes da Costa Date: Tue, 20 Feb 2024 17:29:01 +0000 Subject: [PATCH 13/25] Update .gitlab-ci.yml --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dd0e00fe5..880f5b8b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ stages: ### TEMPLATE PARA DEPLOY ############################ .template_deploy: &template_deploy - image: kaniko-project/executor:debug + image: ${CI_TEMPLATE_REGISTRY_HOST}kaniko-project/executor:debug stage: deploy script: - echo "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" @@ -26,7 +26,7 @@ stages: --destination "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" build_backend: - image: adoptopenjdk/maven-openjdk8 + image: ${CI_TEMPLATE_REGISTRY_HOST}adoptopenjdk/maven-openjdk8 stage: build only: - tags @@ -40,7 +40,7 @@ build_backend: expire_in: 1 day build_frontend: - image: node:16-bullseye + image: ${CI_TEMPLATE_REGISTRY_HOST}node:16-bullseye stage: build only: - tags From b5c2f984b65afa83b581f96c5a328f14bc139fda Mon Sep 17 00:00:00 2001 From: Mauricio Fagundes da Costa Date: Tue, 20 Feb 2024 17:55:59 +0000 Subject: [PATCH 14/25] Update .gitlab-ci.yml --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 880f5b8b1..bc28aeb99 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ stages: ### TEMPLATE PARA DEPLOY ############################ .template_deploy: &template_deploy - image: ${CI_TEMPLATE_REGISTRY_HOST}kaniko-project/executor:debug + image: kaniko-project/executor:debug stage: deploy script: - echo "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" @@ -26,7 +26,7 @@ stages: --destination "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" build_backend: - image: ${CI_TEMPLATE_REGISTRY_HOST}adoptopenjdk/maven-openjdk8 + image: adoptopenjdk/maven-openjdk8 stage: build only: - tags From a70dc5e5e1f915b56a210f0370393b36948a1ee0 Mon Sep 17 00:00:00 2001 From: Mauricio Fagundes da Costa Date: Tue, 20 Feb 2024 18:13:45 +0000 Subject: [PATCH 15/25] Update .gitlab-ci.yml --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc28aeb99..27ea5f347 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,6 +24,7 @@ stages: --dockerfile "${DOCKERFILE_DIR}" --build-arg "release='${CI_COMMIT_SHA}'" --destination "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" + --registry-mirror "nexuspull.tjdft.jus.br" build_backend: image: adoptopenjdk/maven-openjdk8 From d79a3724f28177de5e02a341f13f5bb89b90d587 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Thu, 11 Jul 2024 13:54:13 -0300 Subject: [PATCH 16/25] =?UTF-8?q?Vers=C3=A3o=20inicial?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 10 +- .../src/main/resources/xsd/evtAdmPrelim.xsd | 9 +- .../src/main/resources/xsd/evtAdmissao.xsd | 27 +++-- .../src/main/resources/xsd/evtAfastTemp.xsd | 2 +- .../main/resources/xsd/evtAltCadastral.xsd | 4 +- .../main/resources/xsd/evtAltContratual.xsd | 15 ++- .../src/main/resources/xsd/evtAnotJud.xsd | 53 ++++++++- .../src/main/resources/xsd/evtBasesFGTS.xsd | 18 +-- .../src/main/resources/xsd/evtBasesTrab.xsd | 6 +- .../src/main/resources/xsd/evtCS.xsd | 6 +- .../src/main/resources/xsd/evtCdBenefAlt.xsd | 2 +- .../src/main/resources/xsd/evtCdBenefIn.xsd | 2 +- .../src/main/resources/xsd/evtContProc.xsd | 10 +- .../src/main/resources/xsd/evtDeslig.xsd | 7 +- .../src/main/resources/xsd/evtExclusao.xsd | 2 +- .../src/main/resources/xsd/evtExpRisco.xsd | 2 +- .../src/main/resources/xsd/evtFGTS.xsd | 12 +- .../main/resources/xsd/evtFGTSProcTrab.xsd | 5 +- .../main/resources/xsd/evtInfoEmpregador.xsd | 16 ++- .../src/main/resources/xsd/evtIrrfBenef.xsd | 26 +++-- .../src/main/resources/xsd/evtPgtos.xsd | 9 +- .../src/main/resources/xsd/evtProcTrab.xsd | 40 ++++--- .../src/main/resources/xsd/evtRemun.xsd | 6 +- .../src/main/resources/xsd/evtRmnRPPS.xsd | 2 +- .../src/main/resources/xsd/evtTSVInicio.xsd | 12 +- .../src/main/resources/xsd/evtTabLotacao.xsd | 2 +- .../src/main/resources/xsd/evtToxic.xsd | 105 ++++++++++++++++++ .../main/resources/xsd/evtTribProcTrab.xsd | 7 +- .../src/main/resources/xsd/tipos.xsd | 45 +++++--- .../src/main/resources/application.properties | 6 +- 30 files changed, 346 insertions(+), 122 deletions(-) create mode 100644 src/esocial-esquemas/src/main/resources/xsd/evtToxic.xsd diff --git a/docker-compose.yml b/docker-compose.yml index 2bd6f3081..e8cfaefe9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,13 +22,14 @@ services: volumes: - "./config:/config" environment: - - spring.datasource.url=jdbc:postgresql://esocial-db/postgres + - spring.datasource.url=jdbc:postgresql://esocial-db/postgres + - spring.flyway.baseline-on-migrate=true db: image: postgres:10 container_name: esocial-db - volumes: - - "/var/lib/postgresql/data" + volumes: + - postgres:/var/lib/postgresql/data ports: - "5432:5432" networks: @@ -40,3 +41,6 @@ networks: esocial-net: name: esocial-net driver: bridge + +volumes: + postgres: \ No newline at end of file diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtAdmPrelim.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtAdmPrelim.xsd index bce48a7bb..923247eb2 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtAdmPrelim.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtAdmPrelim.xsd @@ -46,7 +46,7 @@ Preencher com a data de admissão do trabalhador (ou data de início, no caso de Trabalhador Sem Vínculo de Emprego/Estatutário - TSVE). - Validação: Deve ser posterior à data de nascimento do trabalhador e igual ou posterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador. + Validação: Deve ser posterior à data de nascimento do trabalhador, igual ou posterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador e igual ou anterior ao ano do óbito, se existente. @@ -85,7 +85,12 @@ - + + + Tipo de contrato de trabalho. + Validação: Se {codCateg}(../codCateg) = [103] e {dtAdm}(../dtAdm) >= [2024-04-22], deve ser informado [2]. + + Data do término do contrato por prazo determinado. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtAdmissao.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtAdmissao.xsd index 468a9acdb..5b339514c 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtAdmissao.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtAdmissao.xsd @@ -53,7 +53,7 @@ Etnia e raça do trabalhador, conforme sua autoclassificação (art. 39, § 8º, da Lei 12.288/2010). - Validação: Se {dtAdm}(2200_vinculo_infoRegimeTrab_infoCeletista_dtAdm), {dtExercicio}(2200_vinculo_infoRegimeTrab_infoEstatutario_dtExercicio), {sucessaoVinc/dtTransf}(2200_vinculo_sucessaoVinc_dtTransf) ou {transfDom/dtTransf}(2200_vinculo_transfDom_dtTransf) (maior data entre elas) for igual ou posterior a [2023-07-01], retornar alerta caso seja informado o valor [6]. + Validação: Se {dtAdm}(2200_vinculo_infoRegimeTrab_infoCeletista_dtAdm), {dtExercicio}(2200_vinculo_infoRegimeTrab_infoEstatutario_dtExercicio), {sucessaoVinc/dtTransf}(2200_vinculo_sucessaoVinc_dtTransf) ou {transfDom/dtTransf}(2200_vinculo_transfDom_dtTransf) (maior data entre elas) for igual ou posterior a [2024-04-22], não pode ser informado o valor [6]. @@ -173,7 +173,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: O valor informado não pode conter a expressão 'eSocial' nas 7 (sete) primeiras posições. @@ -225,7 +225,7 @@ Preencher com a data de admissão do trabalhador. No caso de transferência do empregado ou de mudança de CPF, preencher com a data inicial do vínculo no primeiro empregador (data de início do vínculo). Validação: Devem ser observadas as seguintes regras: - a) Deve ser posterior à data de nascimento do trabalhador; + a) Deve ser posterior à data de nascimento do trabalhador e igual ou anterior ao ano do óbito, se existente; b) Se {cadIni}(2200_vinculo_cadIni) = [S], deve ser anterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador no eSocial; c) Se {cadIni}(2200_vinculo_cadIni) = [N] e {tpAdmissao}(2200_vinculo_infoRegimeTrab_infoCeletista_tpAdmissao) = [1], deve ser igual ou posterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador no eSocial. @@ -370,7 +370,9 @@ Informar o número de inscrição do contratante de serviços, de acordo com o tipo de inscrição informado em {ideEstabVinc/tpInsc}(./tpInsc). - Validação: Se {ideEstabVinc/tpInsc}(./tpInsc) for igual a [1], deve ser um CNPJ válido, com 14 (catorze) algarismos. Se {ideEstabVinc/tpInsc}(./tpInsc) for igual a [2], deve ser um CPF válido. + Validação: Deve ser um identificador válido. Se {dtAdm}(../../dtAdm) >= [2024-04-22] e: + a) Se {ideEstabVinc/tpInsc}(./tpInsc) = [1], deve ser informado com 14 (catorze) algarismos. Se o empregador for pessoa jurídica, a raiz do CNPJ informado deve ser diferente de {ideEmpregador/nrInsc}(/ideEmpregador_nrInsc). + b) Se {ideEstabVinc/tpInsc}(./tpInsc) = [2], deve ser diferente do CPF do empregado. Se o empregador for pessoa física, também deve ser diferente do CPF do empregador. @@ -416,7 +418,7 @@ Preencher com o tipo de provimento. - Validação: Os valores [3, 5, 6, 7, 8, 9] só são permitidos se a natureza jurídica do declarante for Administração Pública (grupo [1]). + Validação: Os valores [3, 5, 6, 8, 9] só são permitidos se a natureza jurídica do declarante for Administração Pública (grupo [1]). Se {codCateg}(2200_vinculo_infoContrato_codCateg) = [302], deve ser preenchido com [2, 5, 8, 10]. @@ -570,7 +572,12 @@ - + + + Tipo de contrato de trabalho. + Validação: Se {codCateg}(../codCateg) = [103] e {dtAdm}(2200_vinculo_infoRegimeTrab_infoCeletista_dtAdm) >= [2024-04-22], deve ser informado [2]. + + @@ -697,17 +704,17 @@ - + Matrícula do trabalhador no empregador anterior. - Validação: O preenchimento é obrigatório se {cadIni}(2200_vinculo_cadIni) = [N]. + Validação: O preenchimento é obrigatório se {cadIni}(2200_vinculo_cadIni) = [N]. Se {sucessaoVinc/dtTransf}(./dtTransf) for igual ou posterior a [2024-04-22], a matrícula informada neste campo deve ser idêntica à matricula do trabalhador no empregador anterior. Preencher com a data da transferência do empregado para o empregador declarante. Validação: Devem ser observadas as seguintes regras: - a) Deve ser posterior à data de admissão do trabalhador; + a) Deve ser posterior à data de admissão do trabalhador e igual ou anterior ao ano do óbito, se existente; b) Se {cadIni}(2200_vinculo_cadIni) = [S], deve ser anterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador; c) Se {cadIni}(2200_vinculo_cadIni) = [N], deve ser igual ou posterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador. @@ -754,7 +761,7 @@ Preencher com o número do CPF antigo do trabalhador. - + Preencher com a matrícula anterior do trabalhador. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtAfastTemp.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtAfastTemp.xsd index 590a964c8..dd55d65f7 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtAfastTemp.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtAfastTemp.xsd @@ -40,7 +40,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2200 ou S-2300 do respectivo contrato. Não preencher no caso de Trabalhador Sem Vínculo de Emprego/Estatutário - TSVE sem informação de matrícula no evento S-2300. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtAltCadastral.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtAltCadastral.xsd index 7015ac950..1fcd97e60 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtAltCadastral.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtAltCadastral.xsd @@ -55,9 +55,9 @@ Etnia e raça do trabalhador, conforme sua autoclassificação (art. 39, § 8º, da Lei 12.288/2010). - Validação: Se {dtAlteracao}(../dtAlteracao) for igual ou posterior a [2023-07-01], retornar alerta caso seja informado o valor [6]. + Validação: Se {dtAlteracao}(../dtAlteracao) for igual ou posterior a [2024-04-22], não pode ser informado o valor [6]. - + diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtAltContratual.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtAltContratual.xsd index 4a69dbf5b..8213f20e2 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtAltContratual.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtAltContratual.xsd @@ -174,8 +174,19 @@ - - + + + Tipo de contrato de trabalho. + Validação: Se {codCateg}(../codCateg) = [103] e {dtAlteracao}(2206_altContratual_dtAlteracao) >= [2024-04-22], deve ser informado [2]. + + + + + Data do término do contrato por prazo determinado. + Validação: O preenchimento é obrigatório se {tpContr}(./tpContr) = [2]. Não informar se {tpContr}(./tpContr) = [1]. Se preenchido, deve ser igual ou posterior à data de admissão (no caso de transferência ou mudança de CPF, igual ou posterior a {sucessaoVinc/dtTransf}(2200_vinculo_sucessaoVinc_dtTransf), {transfDom/dtTransf}(2200_vinculo_transfDom_dtTransf) ou {dtAltCPF}(2200_vinculo_mudancaCPF_dtAltCPF) do evento S-2200, conforme o caso). + Retornar alerta caso a data informada seja anterior a {dtAlteracao}(2206_altContratual_dtAlteracao). + + diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtAnotJud.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtAnotJud.xsd index 341ca8216..6cec00e92 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtAnotJud.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtAnotJud.xsd @@ -93,7 +93,7 @@ Preencher com o código da categoria do trabalhador. - Validação: Deve ser um código de categoria referente a "Empregado" ([1XX]) ou igual a [302, 303, 309]. + Validação: Deve ser um código de categoria referente a "Empregado" ([1XX]). @@ -109,6 +109,19 @@ Validação: O preenchimento é obrigatório se {tpContr}(./tpContr) = [2]. Não informar se {tpContr}(./tpContr) = [1]. Deve ser igual ou posterior à data de admissão. + + + Preencher com o código correspondente ao tipo de inscrição do estabelecimento relativo ao local de trabalho. + Validação: Não preencher se {codCateg}(./codCateg) = [104]. + + + + + Informar o número de inscrição do estabelecimento relativo ao local de trabalho. + Validação: Preenchimento obrigatório e exclusivo se {tpInscTrab}(./tpInscTrab) for informado. + Deve ser um identificador válido, constante das bases da RFB, conforme indicado em {tpInscTrab}(./tpInscTrab). + + Informações do cargo. @@ -162,18 +175,46 @@ - Informação do(s) vínculo(s)/contrato(s) já declarado(s) no eSocial pelo empregador e incorporado(s) ao vínculo reconhecido judicialmente. - CHAVE_GRUPO: {matIncorp} + Informação do(s) vínculo(s)/contrato(s) já declarado(s) no eSocial e incorporado(s) ao vínculo ou sucedido(s) pelo vínculo reconhecido judicialmente. + CHAVE_GRUPO: {tpInsc}, {nrInsc}, {matIncorp} CONDICAO_GRUPO: OC - + + + Preencher com o código correspondente ao tipo de inscrição, conforme Tabela 05. + Validação: Informação obrigatória e exclusiva se a data de transmissão do evento for igual ou posterior a [2024-04-22]. + + + - Informar a matrícula incorporada (matrícula cujo vínculo/contrato passou a integrar o vínculo reconhecido judicialmente). - Validação: Deve corresponder a uma matrícula informada pelo empregador no evento S-2190, S-2200 ou S-2300, pertencente ao trabalhador preenchido em {cpfTrab}(../cpfTrab). + Informar o número de inscrição do empregador no qual consta a matrícula incorporada ou sucedida, de acordo com o tipo de inscrição indicado no campo {incorporacao/tpInsc}(./tpInsc). + Validação: Preenchimento obrigatório e exclusivo se o campo {incorporacao/tpInsc}(./tpInsc) for informado. + + + Informar a matrícula incorporada (matrícula cujo vínculo/contrato passou a integrar o vínculo reconhecido judicialmente) ou a matrícula no empregador anterior. + Validação: Deve corresponder a uma matrícula informada pelo empregador no evento S-2190, S-2200 ou S-2300, pertencente ao trabalhador preenchido em {cpfTrab}(../cpfTrab), no empregador informado em {incorporacao/nrInsc}(./nrInsc). + + + + + Informações de sucessão do vínculo. + CONDICAO_GRUPO: OC + + + + + + Preencher com a data da transferência do empregado para o empregador declarante. + Validação: Deve ser posterior à data de admissão do trabalhador. + + + + + diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtBasesFGTS.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtBasesFGTS.xsd index 7abde3349..65ec4fd2e 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtBasesFGTS.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtBasesFGTS.xsd @@ -39,7 +39,7 @@ Data de vencimento do FGTS mensal. - Validação: Preencher somente se houver informação no grupo {infoBaseFGTS}(./ideEstab_ideLotacao_infoTrabFGTS_infoBaseFGTS). + Validação: Preencher somente se houver informação no grupo {infoBaseFGTS}(./ideEstab_ideLotacao_infoTrabFGTS_infoBaseFGTS) e se {perApur}(5003_ideEvento_perApur) for anterior ao início do FGTS Digital. Se informada, deve corresponder ao dia 7 (sete) do mês subsequente ao indicado em {perApur}(5003_ideEvento_perApur), se esse dia for útil. Caso não seja, deve corresponder ao dia útil imediatamente anterior. Considera-se como dia não útil o sábado, o domingo e todo aquele constante do Calendário Nacional de feriados bancários divulgados pelo Banco Central do Brasil. @@ -132,7 +132,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Evento de origem: S-1200, S-2299, S-2399 ou S-3000. @@ -220,8 +220,8 @@ - Bases de cálculo e valores, exceto se {tpAcConv} = [E, H] - DESCRICAO_COMPLETA:Informações sobre bases de cálculo e valores do FGTS referentes à remuneração do período de apuração e de períodos anteriores, exceto se {tpAcConv} = [E, H]. + Bases de cálculo e valores, exceto se {tpAcConv} = [E, H, I] + DESCRICAO_COMPLETA:Informações sobre bases de cálculo e valores do FGTS referentes à remuneração do período de apuração e de períodos anteriores, exceto se {tpAcConv} = [E, H, I]. Evento de origem: S-1200, S-2299 ou S-2399. CHAVE_GRUPO: {tpValor}, {indIncid} CONDICAO_GRUPO: OC @@ -392,7 +392,7 @@ Remuneração (valor da base de cálculo) do FGTS, conforme definido nos campos {tpValor}(./tpValor) e {indIncid}(./indIncid). Validação: Deve ser maior que 0 (zero). - Deve corresponder ao somatório dos valores informados no campo {vrRubr} em S-1200 e S-2299 (grupos {infoPerApur} e {infoPerAnt}, quando {tpAcConv} for diferente de [E, H]), e também em S-2399, devendo somar os valores das rubricas cujo {tpRubr}(1010_infoRubrica_inclusao_dadosRubrica_tpRubr) em S-1010 seja igual a [1, 3] e subtrair os valores das rubricas cujo {tpRubr}(1010_infoRubrica_inclusao_dadosRubrica_tpRubr) em S-1010 seja igual a [2, 4], observando a Tabela 23. + Deve corresponder ao somatório dos valores informados no campo {vrRubr} em S-1200 e S-2299 (grupos {infoPerApur} e {infoPerAnt}, quando {tpAcConv} for diferente de [E, H, I]), e também em S-2399, devendo somar os valores das rubricas cujo {tpRubr}(1010_infoRubrica_inclusao_dadosRubrica_tpRubr) em S-1010 seja igual a [1, 3] e subtrair os valores das rubricas cujo {tpRubr}(1010_infoRubrica_inclusao_dadosRubrica_tpRubr) em S-1010 seja igual a [2, 4], observando a Tabela 23. @@ -418,8 +418,8 @@ - Informações sobre bases e valores do FGTS quando {tpAcConv}(5003_infoFGTS_ideEstab_ideLotacao_infoTrabFGTS_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H] - DESCRICAO_COMPLETA:Informações referentes a bases de cálculo e valores do FGTS de períodos anteriores quando {tpAcConv}(./tpAcConv) = [E, H]. + Informações sobre bases e valores do FGTS quando {tpAcConv}(5003_infoFGTS_ideEstab_ideLotacao_infoTrabFGTS_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H, I] + DESCRICAO_COMPLETA:Informações referentes a bases de cálculo e valores do FGTS de períodos anteriores quando {tpAcConv}(./tpAcConv) = [E, H, I]. CHAVE_GRUPO: {perRef}, {tpAcConv} CONDICAO_GRUPO: OC @@ -435,8 +435,8 @@ - Bases de cálculo e valores quando {tpAcConv}(5003_infoFGTS_ideEstab_ideLotacao_infoTrabFGTS_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H] - DESCRICAO_COMPLETA:Informações sobre bases de cálculo e valores do FGTS referentes à remuneração de períodos anteriores quando {tpAcConv}(../tpAcConv) = [E, H]. + Bases de cálculo e valores quando {tpAcConv}(5003_infoFGTS_ideEstab_ideLotacao_infoTrabFGTS_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H, I] + DESCRICAO_COMPLETA:Informações sobre bases de cálculo e valores do FGTS referentes à remuneração de períodos anteriores quando {tpAcConv}(../tpAcConv) = [E, H, I]. CHAVE_GRUPO: {tpValorE}, {indIncidE} diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtBasesTrab.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtBasesTrab.xsd index dc852c507..ce086ce57 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtBasesTrab.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtBasesTrab.xsd @@ -230,7 +230,7 @@ II. Caso o somatório do item I não tenha atingido o limite máximo do salário de contribuição, efetuar o somatório de {valor}(5001_infoCp_ideEstabLot_infoCategIncid_infoBaseCS_valor) quando {tpValor}(5001_infoCp_ideEstabLot_infoCategIncid_infoBaseCS_tpValor) = [11, 12, 13, 14, 19] para todas as categorias diferentes de segurado empregado e aplicar a alíquota correta conforme a categoria, observado o limite máximo do salário de contribuição. OBS.: a) No caso de {indApuracao}(5001_ideEvento_indApuracao) = [1], o cálculo deve ser efetuado separadamente para {infoBaseCS/ind13}(5001_infoCp_ideEstabLot_infoCategIncid_infoBaseCS_ind13) = [0] e {infoBaseCS/ind13}(5001_infoCp_ideEstabLot_infoCategIncid_infoBaseCS_ind13) = [1]. A soma de ambos os cálculos deve corresponder ao valor de {vrCpSeg}(./vrCpSeg). - b) Aplica-se a alíquota de 20% para o cálculo da contribuição previdenciária a ser descontada de remuneração de trabalhador pertencente às categorias [731, 734], quando o empregador for cooperativa de trabalho ({indCoop}(1000_infoEmpregador_inclusao_infoCadastro_indCoop) em S-1000 = [1]), ou pertencente ao grupo "Contribuinte Individual", quando o Empregador tiver {classTrib}(5001_infoCp_classTrib) = [04, 70, 80]). Caso o trabalhador receba remuneração da empresa em outra categoria do grupo "Contribuinte Individual", primeiro deve ser aplicado o desconto sobre essa categoria (7XX) e depois sobre a remuneração das categorias [731, 734], observado o limite máximo do salário de contribuição. + b) Aplica-se a alíquota de 20% para o cálculo da contribuição previdenciária a ser descontada de remuneração de trabalhador pertencente às categorias [731, 734], quando o empregador for cooperativa de trabalho ({indCoop}(1000_infoEmpregador_inclusao_infoCadastro_indCoop) em S-1000 = [1]), ou pertencente ao grupo "Contribuinte Individual", quando o Empregador tiver {classTrib}(5001_infoCp_classTrib) = [04, 70, 80]; ou de trabalhador pertencente à categoria = [902] quando o tipo de lotação tributária ({tpLotacao}(1020_infoLotacao_inclusao_dadosLotacao_tpLotacao) em S-1020) for igual a [92]. Caso o trabalhador receba remuneração da empresa em outra categoria do grupo "Contribuinte Individual", primeiro deve ser aplicado o desconto sobre essa categoria (7XX) e depois sobre a remuneração das categorias [731, 734], observado o limite máximo do salário de contribuição. c) {vrCpSeg}(./vrCpSeg) deve ser igual a {vrDescSeg}(./vrDescSeg) nas seguintes situações: c1) Se houver informações em {infoPerAnt} na composição de {valor}(5001_infoCp_ideEstabLot_infoCategIncid_infoBaseCS_valor); c2) Se houver informação de {procJudTrab} com {tpTrib} = [2] nos eventos que contenham informações de remuneração (S-1200, S-2299 e S-2399); @@ -239,7 +239,7 @@ c5) Se {procEmi} do evento S-1200/S-2299/S-2399 for igual a [2, 4, 22]; c6) Para as categorias do grupo "Contribuinte Individual" (7XX), se o campo {dtTrans11096}(1000_infoEmpregador_inclusao_infoCadastro_dtTrans11096) em S-1000 for informado. d) No caso de trabalhador categoria = [102], utilizar somente a alíquota de 8%, observado o limite máximo do salário de contribuição. - e) No caso de empregador com {classTrib}(5001_infoCp_classTrib) = [21, 22], exceto se {ideEstabLot/tpInsc}(5001_infoCp_ideEstabLot_tpInsc) = [4], ou com {classTrib}(5001_infoCp_classTrib) = [60], não calcular para a categoria do grupo "Contribuinte Individual" (7XX). O valor deve ser zerado. + e) No caso de empregador com {classTrib}(5001_infoCp_classTrib) = [21, 22, 60], não calcular para a categoria do grupo "Contribuinte Individual" (7XX). O valor deve ser zerado. f) Não calcular quando a categoria do trabalhador for [741] (MEI). O valor deve ser zerado. g) Não calcular quando a lotação tributária for [91]. O valor deve ser zerado. @@ -304,7 +304,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Evento de origem: S-1200, S-2299 ou S-2399. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtCS.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtCS.xsd index f67ebfa59..de638503e 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtCS.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtCS.xsd @@ -443,16 +443,16 @@ Preencher com o código correspondente ao tipo de incidência para fins de apuração da contribuição previdenciária. - Validação: a) Para empresas com {classTrib}(5011_infoCS_infoContrib_classTrib) = [01, 70, 80], todas as bases de cálculo devem ser totalizadas com {indIncid}(./indIncid) = [9], EXCETO para {classTrib}(5011_infoCS_infoContrib_classTrib) = [01] E {ideEstab/tpInsc}(5011_infoCS_ideEstab) = [4], que deve ser totalizada com {indIncid}(./indIncid) = [1]. + Validação: a) Para empresas com {classTrib}(5011_infoCS_infoContrib_classTrib) = [01, 70, 80], todas as bases de cálculo devem ser totalizadas com {indIncid}(./indIncid) = [9], EXCETO para {classTrib}(5011_infoCS_infoContrib_classTrib) = [01] E {ideEstab/tpInsc}(5011_infoCS_ideEstab_tpInsc) = [4], que deve ser totalizada com {indIncid}(./indIncid) = [1]. b) Para empresas com {classTrib}(5011_infoCS_infoContrib_classTrib) = [03], considerar a informação prestada no campo {indSimples}(5001_infoCp_ideEstabLot_infoCategIncid_indSimples) do evento S-5001, conforme abaixo: - Se o {indSimples}(5001_infoCp_ideEstabLot_infoCategIncid_indSimples) em S-5001 = [1] (contrib. subst. integralmente), a base de cálculo do respectivo trabalhador deve ser totalizada com {indIncid}(./indIncid) = [9]; - Se o {indSimples}(5001_infoCp_ideEstabLot_infoCategIncid_indSimples) em S-5001 = [2] (contrib. não substituída), a base de cálculo do respectivo trabalhador deve ser totalizada com {indIncid}(./indIncid) = [1] (normal); - Se o {indSimples}(5001_infoCp_ideEstabLot_infoCategIncid_indSimples) em S-5001 = [3] (ativ. concomitante), a base de cálculo do respectivo trabalhador deve ser totalizada com {indIncid}(./indIncid) = [2]. c) Para empresas com {classTrib}(5011_infoCS_infoContrib_classTrib) = [10] (sindicato de avulsos não portuários), as bases de cálculo dos trabalhadores avulsos da categoria [202] devem ser totalizadas com {indIncid}(./indIncid) = [9]. - d) Para {classTrib}(5011_infoCS_infoContrib_classTrib) = [22] (segurado especial), as bases de cálculo dos trabalhadores devem ser totalizadas com {indIncid}(./indIncid) = [9], EXCETO para a categoria [104] (empregado doméstico), que deve ser totalizada com {indIncid}(./indIncid) = [1]. + d) Para {classTrib}(5011_infoCS_infoContrib_classTrib) = [22] (segurado especial), as bases de cálculo dos trabalhadores devem ser totalizadas com {indIncid}(./indIncid) = [9], EXCETO para a categoria [104] (empregado doméstico) ou se {ideEstab/tpInsc}(5011_infoCS_ideEstab_tpInsc) = [4], que deve ser totalizada com {indIncid}(./indIncid) = [1]. e) Para contribuinte com {classTrib}(5011_infoCS_infoContrib_classTrib) = [99] e com {indCoop}(5011_infoCS_infoContrib_infoPJ_indCoop) = [1] (cooperativa de trabalho), as remunerações dos cooperados (categoria [731, 734]) cuja lotação esteja classificada com {tpLotacao}(1020_infoLotacao_inclusao_dadosLotacao_tpLotacao) em S-1020 = [05, 06, 07] devem ser totalizadas com {indIncid}(./indIncid) = [9]. Nos demais casos, {indIncid}(./indIncid) = [1]. f) Para contribuintes com {classTrib}(5011_infoCS_infoContrib_classTrib) = [11], as bases de cálculo dos trabalhadores devem ser totalizadas com {indIncid}(./indIncid) = [9], EXCETO para as categorias de contribuinte individual, que devem ser totalizadas com {indIncid}(./indIncid) = [1]. - g) Para {tpLotacao}(1020_infoLotacao_inclusao_dadosLotacao_tpLotacao) em S-1020 = [91], todas as bases de cálculo devem ser totalizadas com {indIncid}(./indIncid) = [9]. + g) Para {tpLotacao}(1020_infoLotacao_inclusao_dadosLotacao_tpLotacao) em S-1020 = [91, 92], todas as bases de cálculo devem ser totalizadas com {indIncid}(./indIncid) = [9]. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefAlt.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefAlt.xsd index 8b4ab1b51..a32b10910 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefAlt.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefAlt.xsd @@ -67,7 +67,7 @@ Etnia e raça do beneficiário, conforme sua autoclassificação (art. 39, § 8º, da Lei 12.288/2010). - Validação: Se {dtAlteracao}(../dtAlteracao) for igual ou posterior a [2023-07-01], retornar alerta caso seja informado o valor [6]. + Validação: Se {dtAlteracao}(../dtAlteracao) for igual ou posterior a [2024-04-22], não pode ser informado o valor [6]. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefIn.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefIn.xsd index e487a04db..47cb97bdb 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefIn.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtCdBenefIn.xsd @@ -79,7 +79,7 @@ Etnia e raça do beneficiário, conforme sua autoclassificação (art. 39, § 8º, da Lei 12.288/2010). - Validação: Se {dtInicio}(./dtInicio) for igual ou posterior a [2023-07-01], retornar alerta caso seja informado o valor [6]. + Validação: Se {dtInicio}(./dtInicio) for igual ou posterior a [2024-04-22], não pode ser informado o valor [6]. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtContProc.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtContProc.xsd index bfe000dd3..1dfe47774 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtContProc.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtContProc.xsd @@ -273,7 +273,7 @@ Identificação dos advogados. CHAVE_GRUPO: {tpInsc}, {nrInsc} - CONDICAO_GRUPO: OC + CONDICAO_GRUPO: O (se {vlrDespAdvogados}(../despProcJud_vlrDespAdvogados) > 0); N (nos demais casos) @@ -448,6 +448,7 @@ Detalhamento das deduções com exigibilidade suspensa. + CHAVE_GRUPO: {indTpDeducao} CONDICAO_GRUPO: OC @@ -620,9 +621,14 @@ IRRF - Decisão da Justiça do Trabalho + + + IRRF - CCP/NINTER + + - IRRF - RRA - Decisão da Justiça do Trabalho + IRRF - RRA diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtDeslig.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtDeslig.xsd index c89a1c295..ea7fceb40 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtDeslig.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtDeslig.xsd @@ -263,7 +263,7 @@ Tipo do instrumento ou situação ensejadora da remuneração relativa a períodos de apuração anteriores. - Validação: Se {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [04, 22], não pode ser informado [E, H]. + Validação: Se {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [04, 22], não pode ser informado [E, H, I]. @@ -306,6 +306,11 @@ Sentença judicial (exceto reclamatória trabalhista) + + + Parcelas complementares conhecidas após o fechamento da folha + + diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtExclusao.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtExclusao.xsd index ad98cbf15..8e940d5fd 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtExclusao.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtExclusao.xsd @@ -51,7 +51,7 @@ Identificação do trabalhador a que se refere o evento a ser excluído DESCRICAO_COMPLETA:Grupo que identifica a qual trabalhador se refere o evento a ser excluído. - CONDICAO_GRUPO: O (se {tpEvento}(../tpEvento) corresponder a um dos eventos não periódicos (S-2190 a S-2420 ou S-8299) ou um dos eventos periódicos (S-1200 a S-1210); N (nos demais casos) + CONDICAO_GRUPO: O (se {tpEvento}(../tpEvento) corresponder a um dos eventos não periódicos (S-2190 a S-2420, S-8200 ou S-8299) ou um dos eventos periódicos (S-1200 a S-1210); N (nos demais casos) diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtExpRisco.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtExpRisco.xsd index 22ab0743d..8d75e5f23 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtExpRisco.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtExpRisco.xsd @@ -131,7 +131,7 @@ Descrição do agente nocivo. - Validação: Preenchimento obrigatório se {codAgNoc}(./codAgNoc) = [01.01.001, 01.02.001, 01.03.001, 01.04.001, 01.05.001, 01.06.001, 01.07.001, 01.08.001, 01.09.001, 01.10.001, 01.12.001, 01.13.001, 01.14.001, 01.15.001, 01.16.001, 01.17.001, 01.18.001, 05.01.001]. + Validação: Preenchimento obrigatório se {codAgNoc}(./codAgNoc) = [01.01.001, 01.02.001, 01.03.001, 01.04.001, 01.05.001, 01.06.001, 01.07.001, 01.08.001, 01.09.001, 01.10.001, 01.12.001, 01.13.001, 01.14.001, 01.15.001, 01.16.001, 01.17.001, 01.18.001, 05.01.001]. Não informar se {codAgNoc}(./codAgNoc) = [09.01.001] e {dtIniCondicao}(../dtIniCondicao) >= [2024-04-22]. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtFGTS.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtFGTS.xsd index a97c751bc..347ba1796 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtFGTS.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtFGTS.xsd @@ -106,8 +106,8 @@ - Bases de cálculo e valores do FGTS, exceto se {tpAcConv} = [E, H] - DESCRICAO_COMPLETA:Informações consolidadas das bases de cálculo e valores do FGTS do período de apuração e de períodos anteriores, exceto se {tpAcConv} = [E, H]. + Bases de cálculo e valores do FGTS, exceto se {tpAcConv} = [E, H, I] + DESCRICAO_COMPLETA:Informações consolidadas das bases de cálculo e valores do FGTS do período de apuração e de períodos anteriores, exceto se {tpAcConv} = [E, H, I]. Evento de origem: S-1270 ou S-5003. CHAVE_GRUPO: {tpValor}, {indIncid} CONDICAO_GRUPO: OC @@ -308,8 +308,8 @@ - Informações sobre bases de cálculo e valores do FGTS, quando {tpAcConv}(5013_infoFGTS_ideEstab_ideLotacao_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H] - DESCRICAO_COMPLETA:Informações referentes a bases de cálculo e valores do FGTS de períodos anteriores quando {tpAcConv}(./tpAcConv) = [E, H]. + Informações sobre bases de cálculo e valores do FGTS, quando {tpAcConv}(5013_infoFGTS_ideEstab_ideLotacao_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H, I] + DESCRICAO_COMPLETA:Informações referentes a bases de cálculo e valores do FGTS de períodos anteriores quando {tpAcConv}(./tpAcConv) = [E, H, I]. Evento de origem: S-5003. CHAVE_GRUPO: {perRef}, {tpAcConv} CONDICAO_GRUPO: OC @@ -325,8 +325,8 @@ - Bases de cálculo e valores do FGTS, quando {tpAcConv}(5013_infoFGTS_ideEstab_ideLotacao_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H] - DESCRICAO_COMPLETA:Informações consolidadas das bases de cálculo e valores do FGTS de períodos anteriores quando {tpAcConv}(../tpAcConv) = [E, H]. + Bases de cálculo e valores do FGTS, quando {tpAcConv}(5013_infoFGTS_ideEstab_ideLotacao_infoBaseFGTS_infoBasePerAntE_tpAcConv) = [E, H, I] + DESCRICAO_COMPLETA:Informações consolidadas das bases de cálculo e valores do FGTS de períodos anteriores quando {tpAcConv}(../tpAcConv) = [E, H, I]. CHAVE_GRUPO: {tpValorE}, {indIncidE} diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtFGTSProcTrab.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtFGTSProcTrab.xsd index 61c69cb1f..1eda1810f 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtFGTSProcTrab.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtFGTSProcTrab.xsd @@ -93,7 +93,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Evento de origem: S-2500 ou S-3500. @@ -148,10 +148,11 @@ Origem: campo {ideEstab/nrInsc}(2500_ideTrab_infoContr_ideEstab_nrInsc) de S-2500. - + Informações sobre bases de cálculo e valores do FGTS por período de referência. CHAVE_GRUPO: {perRef}, {tpValorProcTrab} + CONDICAO_GRUPO: O (se {basePerRef/codCateg}(./codCateg) = [1XX, 2XX, 301, 302, 303, 304, 306, 307, 309, 310, 312, 4XX, 721]); N (nos demais casos) diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtInfoEmpregador.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtInfoEmpregador.xsd index c03a9ffc3..f780300b1 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtInfoEmpregador.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtInfoEmpregador.xsd @@ -145,8 +145,8 @@ - Indicativo de desoneração da folha. - Validação: Pode ser igual a [1] apenas se {classTrib}(./classTrib) = [02, 03, 99]. Nos demais casos, deve ser igual a [0]. + Indicativo de opção/enquadramento de desoneração da folha. + Validação: Pode ser igual a [1] apenas se {classTrib}(./classTrib) = [02, 03, 99]. Pode ser igual a [2] apenas para as naturezas jurídicas iguais a [103-1, 106-6, 124-4, 133-3]. Nos demais casos, deve ser igual a [0]. @@ -156,7 +156,12 @@ - Empresa enquadrada nos arts. 7º a 9º da Lei 12.546/2011 + Empresa enquadrada nos critérios da legislação vigente + + + + + Município enquadrado nos critérios da legislação vigente @@ -227,13 +232,14 @@ Data da transformação em sociedade de fins lucrativos - Lei 11.096/2005. Validação: Não preencher se {classTrib}(./classTrib) = [21, 22]. + Se informada, deve ser maior que [2005-11-21] e menor ou igual à data atual. - Indicador de tributação sobre a folha de pagamento - PIS e COFINS. - Preenchimento exclusivo para o empregador em situação de tributação de PIS e COFINS sobre a folha de pagamento. + Indicador de tributação sobre a folha de pagamento - PIS e PASEP. + Preenchimento exclusivo para o empregador em situação de tributação de PIS e PASEP sobre a folha de pagamento. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtIrrfBenef.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtIrrfBenef.xsd index 49a2321d5..74b146061 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtIrrfBenef.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtIrrfBenef.xsd @@ -121,7 +121,7 @@ c) Se {tpPgto}(./tpPgto) = [5], retornar [000]. - + Rendimentos tributáveis, deduções, isenções e retenções do IRRF. CHAVE_GRUPO: {tpInfoIR} @@ -227,6 +227,11 @@ Plano privado coletivo de assistência à saúde + + + Desconto simplificado mensal + + Rendimento não tributável ou isento do IRRF: @@ -489,7 +494,7 @@ Composição do valor do rendimento tributável, não tributável, retenção, dedução ou isenção do IRRF, de acordo com a classificação apresentada no campo {tpInfoIR}(./tpInfoIR). - Validação: Deve ser maior que 0 (zero), exceto para {tpInfoIR}(./tpInfoIR) = [7900]. + Validação: Deve ser maior ou igual a 0 (zero), exceto para {tpInfoIR}(./tpInfoIR) = [7900]. Deve corresponder ao somatório dos valores informados nas rubricas (campo {vrRubr}) dos eventos que deram origem ao S-1210 (grupos {infoPerApur} e {infoPerAnt} do S-1200, S-1202, S-1207 e S-2299, e grupo {verbasResc} do S-2399), desde que o campo {indApurIR} vinculado às respectivas rubricas seja igual a [0] ou não informado, obedecendo ao que segue: a) Somar os valores das rubricas cujo {tpRubr}(1010_infoRubrica_inclusao_dadosRubrica_tpRubr) em S-1010 seja igual a [1, 3] e subtrair os valores das rubricas cujo {tpRubr}(1010_infoRubrica_inclusao_dadosRubrica_tpRubr) em S-1010 seja igual a [2, 4], observando a tabela de relacionamento abaixo: {tpInfoIR}(./tpInfoIR) = [11], {codIncIRRF}(1010_infoRubrica_inclusao_dadosRubrica_codIncIRRF) em S-1010 = [11, 13]; @@ -623,14 +628,14 @@ Valor relativo ao Imposto de Renda Retido na Fonte sobre rendimentos do trabalho. Validação: Deve ser maior que 0 (zero) e agrupado conforme segue: a) Quando o evento de origem for S-1200, S-1202, S-2299, S-2399 e respectivo S-1210: - {CRMen}(./CRMen) = [056107]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 401, 410, 501, 721, 722, 723, 901, 902, 903, 904, 906], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 for diferente de [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31, 32]; + {CRMen}(./CRMen) = [056107]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 401, 410, 501, 721, 722, 723, 761, 901, 902, 903, 904, 906], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 for diferente de [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31, 32]; {CRMen}(./CRMen) = [056108]: se {codCateg}(../codCateg) = [104], {indApurIR} = [0] e os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados, efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31]; {CRMen}(./CRMen) = [056109]: se {codCateg}(../codCateg) = [104], {indApurIR} = [0] e os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados, efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [32], apenas se origem for S-2299; {CRMen}(./CRMen) = [056110]: se {codCateg}(../codCateg) = [104], {indApurIR} = [0] e os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados, efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [32], exceto se origem for S-2299; - {CRMen}(./CRMen) = [056111]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111, 201, 202], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31]; - {CRMen}(./CRMen) = [056112]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111, 201, 202], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [32], exceto se origem for S-2299/S-2399; - {CRMen}(./CRMen) = [056113]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111, 201, 202], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [32], apenas se origem for S-2299/S-2399; - {CRMen}(./CRMen) = [058806]: se {codCateg}(../codCateg) = [201, 202, 701, 711, 712, 731, 734, 738, 741, 751, 761, 771, 781], {indApurIR} = [0] e os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados, efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31, 32, 34]; + {CRMen}(./CRMen) = [056111]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31]; + {CRMen}(./CRMen) = [056112]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [32], exceto se origem for S-2299/S-2399; + {CRMen}(./CRMen) = [056113]: se {codCateg}(../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111], {indApurIR} = [0], os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados e {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [22], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [32], apenas se origem for S-2299/S-2399; + {CRMen}(./CRMen) = [058806]: se {codCateg}(../codCateg) = [201, 202, 701, 711, 712, 731, 734, 738, 741, 751, 771, 781], {indApurIR} = [0] e os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados, efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31, 32]; {CRMen}(./CRMen) = [061001]: se {codCateg}(../codCateg) = [712], {indApurIR} = [0] e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) = [586], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31]; {CRMen}(./CRMen) = [356201]: se {codCateg}(../codCateg) = [1XX], {indApurIR} = [0] e os campos {indRRA} e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não forem informados, efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [34]; {CRMen}(./CRMen) = [188901]: se {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) não for informado, {indApurIR} = [0] e {indRRA} = [S], efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31, 32, 34]. @@ -661,7 +666,7 @@ Valor relativo ao Imposto de Renda Retido na Fonte sobre rendimentos do trabalho pagos a residente, para fins fiscais, no exterior. - Evento de origem: S-1200, S-1202, S-2299, S-2399 e respectivo S-1210. + Evento de origem: S-1200, S-1202, S-1207, S-2299, S-2399 e respectivo S-1210. Validação: Deve ser maior que 0 (zero). Efetuar o somatório de {valor}(../infoIR_valor) cujo {tpInfoIR}(../infoIR_tpInfoIR) = [31, 32, 34], se {indApurIR} = [0] e: a) {codCateg}(../codCateg) for diferente de [712] e {paisResidExt}(1210_ideBenef_infoPgto_paisResidExt) for informado com qualquer valor; ou @@ -990,12 +995,12 @@ - Valor da dedução relativa a previdência complementar. + Valor da dedução mensal relativa a previdência complementar. - Valor da contribuição do ente público patrocinador da Fundação de Previdência Complementar do Servidor Público (Funpresp). + Valor da contribuição mensal do ente público patrocinador da Fundação de Previdência Complementar do Servidor Público (Funpresp). @@ -1057,6 +1062,7 @@ Detalhamento das deduções com exigibilidade suspensa. + CHAVE_GRUPO: {indTpDeducao}, {cnpjEntidPC} CONDICAO_GRUPO: OC diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtPgtos.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtPgtos.xsd index ff671cd60..4d1d0b96b 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtPgtos.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtPgtos.xsd @@ -340,13 +340,13 @@ - Valor da dedução relativa a previdência complementar. + Valor da dedução mensal relativa a previdência complementar. Validação: Deve ser maior que 0 (zero). - Valor da contribuição do ente público patrocinador da Fundação de Previdência Complementar do Servidor Público (Funpresp). + Valor da contribuição mensal do ente público patrocinador da Fundação de Previdência Complementar do Servidor Público (Funpresp). Validação: Informação permitida apenas se {tpPrev}(./tpPrev) = [3]. Deve ser maior que 0 (zero). @@ -384,6 +384,7 @@ Detalhamento das deduções suspensas DESCRICAO_COMPLETA: Detalhamento das deduções com exigibilidade suspensa. + CHAVE_GRUPO: {indTpDeducao}, {cnpjEntidPC} CONDICAO_GRUPO: OC @@ -400,14 +401,14 @@ Número de inscrição da entidade de previdência complementar. - Validação: Informação obrigatória e exclusiva se {indTpDeducao}(./indTpDeducao) = [4]. + Validação: Informação obrigatória e exclusiva se {indTpDeducao}(./indTpDeducao) = [2, 3, 4]. Deve ser um CNPJ válido no Cadastro CNPJ e não pode estar com situação cadastral "baixada" (situação = 8) em data anterior ao período de apuração indicado em {perApur}(1210_ideEvento_perApur) ou "nula" (situação = 1). Valor da contribuição do ente público patrocinador da Fundação de Previdência Complementar do Servidor Público (Funpresp). - Validação: Informação obrigatória e exclusiva se {indTpDeducao}(./indTpDeducao) = [4]. + Validação: Informação exclusiva se {indTpDeducao}(./indTpDeducao) = [4]. Deve ser maior que 0 (zero). diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtProcTrab.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtProcTrab.xsd index 4bf14b376..965bf091f 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtProcTrab.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtProcTrab.xsd @@ -19,6 +19,7 @@ REGRA:REGRA_EXISTE_INFO_EMPREGADOR REGRA:REGRA_MESMO_PROCEMI REGRA:REGRA_MUDANCA_CATEG_NAT_ATIV + REGRA:REGRA_RETIFICA_MESMO_VINCULO REGRA:REGRA_UNICIDADE_CONTRATUAL REGRA:REGRA_VALIDA_EMPREGADOR REGRA:REGRA_VALIDA_MATRICULA @@ -49,7 +50,7 @@ Identificação do contribuinte, caso tenha havido imposição de responsabilidade indireta. DESCRICAO_COMPLETA: Informações de identificação do contribuinte (responsável direto), caso tenha havido imposição de responsabilidade indireta. - CONDICAO_GRUPO: OC + CONDICAO_GRUPO: O (se {infoContr/tpContr}(2500_ideTrab_infoContr_tpContr) = [8]); N (nos demais casos) @@ -104,10 +105,10 @@ - Informar a data do(a): - a) Trânsito em julgado da decisão líquida proferida no processo trabalhista; + Informar a data da: + a) Determinação judicial para o cumprimento da decisão líquida transitada em julgado; b) Homologação de acordo judicial; ou - c) Trânsito em julgado da decisão homologatória dos cálculos de liquidação da sentença. + c) Decisão que determinar o cumprimento antecipado de obrigação. Validação: Deve ser igual ou anterior à data atual. @@ -139,7 +140,7 @@ - Data da celebração do acordo celebrado perante CCP ou Ninter. + Data da celebração do acordo celebrado perante CCP ou NINTER. Validação: Deve ser igual ou anterior à data atual. @@ -234,7 +235,7 @@ - Trabalhador com vínculo formalizado, com alteração nas datas de admissão e de desligamento + Trabalhador com vínculo formalizado, com alteração na data de admissão e inclusão ou alteração de data de desligamento @@ -268,7 +269,7 @@ Indicativo se o contrato possui informação no evento S-2190, S-2200 ou S-2300 no declarante. - Validação: Deve ser igual a [N] se o grupo {ideResp}(2500_ideEmpregador_ideResp) for informado. + Validação: Deve ser igual a [N] se o grupo {ideResp}(2500_ideEmpregador_ideResp) for informado. Além disso, somente pode haver um contrato com o valor igual a [N]. @@ -298,7 +299,7 @@ Indicativo se houve reconhecimento de motivo de desligamento diferente do informado pelo declarante. - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Se {indContr}(./indContr) = [N], deve ser criada uma matrícula para o trabalhador. @@ -399,11 +400,11 @@ Tipo de regime previdenciário. Validação: Se {infoContr/codCateg}(../../codCateg) = [104], deve ser preenchido com [1]. Se {infoContr/codCateg}(../../codCateg) = [101, 102, 103, 105, 106, 107, 108, 111], não pode ser preenchido com [2]. - + Preencher com a data de admissão do trabalhador. - Validação: Deve ser posterior à data de nascimento do trabalhador. + Validação: Deve ser posterior à data de nascimento do trabalhador e igual ou anterior ao ano do óbito, se existente. @@ -509,15 +510,16 @@ - + Matrícula do trabalhador no empregador anterior. + Validação: Se {sucessaoVinc/dtTransf}(./dtTransf) for igual ou posterior a [2024-04-22], a matrícula informada neste campo deve ser idêntica à matricula do trabalhador no empregador anterior. Preencher com a data da transferência do empregado para o empregador declarante. - Validação: Deve ser posterior à data de admissão do trabalhador. + Validação: Deve ser posterior à data de admissão do trabalhador e igual ou anterior ao ano do óbito, se existente. @@ -673,7 +675,7 @@ - + Informar a matrícula incorporada (matrícula cujo vínculo/contrato passou a integrar período de unicidade contratual reconhecido judicialmente). O campo não deve ser informado somente no caso de TSVE cadastrado em versão do leiaute anterior a S-1.0. Validação: Deve corresponder a uma matrícula existente no RET para o respectivo trabalhador e diferente do vínculo/contrato informado em {infoContr}(2500_ideTrab_infoContr). @@ -781,9 +783,15 @@ - - Ano-base em que houve indenização substitutiva do abono salarial. - + + + Ano-base em que houve indenização substitutiva do abono salarial. + + + + + + diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtRemun.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtRemun.xsd index 96a365a9a..cd673b067 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtRemun.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtRemun.xsd @@ -187,7 +187,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2190, S-2200 ou S-2300 do respectivo contrato. Não preencher no caso de Trabalhador Sem Vínculo de Emprego/Estatutário - TSVE sem informação de matrícula no evento S-2300. @@ -246,7 +246,7 @@ Tipo do instrumento ou situação ensejadora da remuneração relativa a períodos de apuração anteriores. - Validação: Se {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [04, 22], não pode ser informado [E, H]. + Validação: Se {classTrib}(1000_infoEmpregador_inclusao_infoCadastro_classTrib) em S-1000 = [04, 22], não pode ser informado [E, H, I]. @@ -290,7 +290,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2190, S-2200 ou S-2300 do respectivo contrato. Não preencher no caso de TSVE sem informação de matrícula no evento S-2300 ou se {remunSuc}(1200_dmDev_infoPerAnt_ideADC_remunSuc) = [S]. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtRmnRPPS.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtRmnRPPS.xsd index 653cf0944..c2b9bf7a8 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtRmnRPPS.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtRmnRPPS.xsd @@ -215,7 +215,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2200 ou S-2300 do respectivo contrato. Não preencher no caso de Trabalhador Sem Vínculo de Emprego/Estatutário - TSVE sem informação de matrícula no evento S-2300 ou, no caso de {remunPerAnt}(1202_dmDev_infoPerAnt_idePeriodo_ideEstab_remunPerAnt), se {remunOrgSuc}(1202_dmDev_infoPerAnt_remunOrgSuc) = [S]. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtTSVInicio.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtTSVInicio.xsd index cd5784b88..de224945f 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtTSVInicio.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtTSVInicio.xsd @@ -47,7 +47,7 @@ Etnia e raça do trabalhador, conforme sua autoclassificação (art. 39, § 8º, da Lei 12.288/2010). - Validação: Se {dtInicio}(2300_infoTSVInicio_dtInicio) for igual ou posterior a [2023-07-01], retornar alerta caso seja informado o valor [6]. + Validação: Se {dtInicio}(2300_infoTSVInicio_dtInicio) for igual ou posterior a [2024-04-22], não pode ser informado o valor [6]. @@ -178,7 +178,7 @@ f) Para o servidor público exercente de cargo eletivo, a data de início do mandato; g) Para os demais trabalhadores, a data de início das atividades. Validação: Devem ser observadas as seguintes regras: - a) Deve ser posterior à data de nascimento do trabalhador e não pode ser posterior a 30 (trinta) dias da data atual; + a) Deve ser posterior à data de nascimento do trabalhador, não pode ser posterior a 30 (trinta) dias da data atual e deve ser igual ou anterior ao ano do óbito, se existente; b) Se {cadIni}(./cadIni) = [S], deve ser anterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador no eSocial; c) Se {cadIni}(./cadIni) = [N], deve ser igual ou posterior à data de início da obrigatoriedade dos eventos não periódicos para o empregador no eSocial. @@ -279,7 +279,7 @@ Validação: O preenchimento é obrigatório se {infoDirigenteSindical/categOrig}(./categOrig) corresponder a "Empregado", "Agente Público", "Avulso" ou for igual a [721]. - + Preencher com a matrícula do trabalhador na empresa de origem. Validação: Preenchimento obrigatório se {infoDirigenteSindical/categOrig}(./categOrig) corresponder a "Empregado" ou "Agente Público". @@ -321,7 +321,7 @@ REGRA:REGRA_VALIDA_CNPJ - + Preencher com a matrícula do trabalhador no empregador/órgão público cedente/de origem. @@ -330,7 +330,7 @@ Preencher com a data de admissão (ou de exercício) do trabalhador no empregador/órgão público cedente/de origem. - Validação: Deve ser uma data igual ou anterior a {dtInicio}(2300_infoTSVInicio_dtInicio) e igual ou posterior a 01/01/1890. + Validação: Deve ser uma data igual ou anterior a {dtInicio}(2300_infoTSVInicio_dtInicio) e posterior a {nascimento/dtNascto}(2300_trabalhador_nascimento_dtNascto). @@ -370,7 +370,7 @@ REGRA:REGRA_VALIDA_CNPJ - + Preencher com a matrícula do servidor no órgão público de origem. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtTabLotacao.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtTabLotacao.xsd index c007bd9a5..f3330d4e2 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtTabLotacao.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtTabLotacao.xsd @@ -109,7 +109,7 @@ Preencher com o código correspondente ao tipo de inscrição, conforme Tabela 05. - Validação: O campo não deve ser preenchido se {tpLotacao}(./tpLotacao) for igual a [01, 10, 21, 24, 90, 91]. Nos demais casos, observar conteúdo exigido para o campo {dadosLotacao/nrInsc}(./nrInsc), conforme Tabela 10. + Validação: O campo não deve ser preenchido se {tpLotacao}(./tpLotacao) for igual a [01, 10, 21, 24, 90, 91, 92]. Nos demais casos, observar conteúdo exigido para o campo {dadosLotacao/nrInsc}(./nrInsc), conforme Tabela 10. diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtToxic.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtToxic.xsd new file mode 100644 index 000000000..2cd028ab7 --- /dev/null +++ b/src/esocial-esquemas/src/main/resources/xsd/evtToxic.xsd @@ -0,0 +1,105 @@ + + + + + + + S-2221 - Exame Toxicológico do Motorista Profissional Empregado + + + + + + Evento Exame Toxicológico do Motorista Profissional Empregado + CHAVE_GRUPO: {Id} + REGRA:REGRA_ENVIO_PROC_FECHAMENTO + REGRA:REGRA_EVENTOS_EXTEMP + REGRA:REGRA_EVENTO_EXT_SEM_IMPACTO_FOPAG + REGRA:REGRA_EVENTO_POSTERIOR_CAT_OBITO + REGRA:REGRA_EXISTE_INFO_EMPREGADOR + REGRA:REGRA_EXISTE_VINCULO + REGRA:REGRA_EXTEMP_REINTEGRACAO + REGRA:REGRA_MESMO_PROCEMI + REGRA:REGRA_RETIFICA_MESMO_VINCULO + + + + + + + + + Informações de identificação do trabalhador e do vínculo. + CHAVE_GRUPO: {cpfTrab*}, {matricula*} + + + + + + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. + Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2190 ou S-2200 do respectivo vínculo trabalhista. Permitir apenas vínculos com categoria [1XX]. + + + + + + + + Informações do exame toxicológico do motorista profissional. + CHAVE_GRUPO: {dtExame*} + + + + + + Data da realização do exame toxicológico. + Validação: Deve ser uma data válida, igual ou anterior à data atual e igual ou posterior à data de início da obrigatoriedade deste evento para o empregador no eSocial. + + + + + CNPJ do laboratório responsável pela realização do exame. + Validação: Deve ser um CNPJ válido, com 14 (catorze) algarismos. + + + + + + Código do exame toxicológico. + Validação: Deve possuir 11 (onze) caracteres, composto por duas letras (dois primeiros caracteres) e nove algarismos (últimos nove caracteres). + + + + + + + + + + Preencher com o nome do médico. + + + + + Número de inscrição do médico no Conselho Regional de Medicina - CRM. + Validação: Preenchimento obrigatório, exceto se o endereço do trabalhador em S-2200 ou S-2205 vigente em {dtExame}(./dtExame) for no exterior. + + + + + Preencher com a sigla da Unidade da Federação - UF de expedição do CRM. + Validação: Preenchimento obrigatório, exceto se o endereço do trabalhador em S-2200 ou S-2205 vigente em {dtExame}(./dtExame) for no exterior. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/esocial-esquemas/src/main/resources/xsd/evtTribProcTrab.xsd b/src/esocial-esquemas/src/main/resources/xsd/evtTribProcTrab.xsd index d6f564bea..2fb6d6106 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/evtTribProcTrab.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/evtTribProcTrab.xsd @@ -138,9 +138,14 @@ IRRF - Decisão da Justiça do Trabalho + + + IRRF - CCP/NINTER + + - IRRF - RRA - Decisão da Justiça do Trabalho + IRRF - RRA diff --git a/src/esocial-esquemas/src/main/resources/xsd/tipos.xsd b/src/esocial-esquemas/src/main/resources/xsd/tipos.xsd index ea0a68d11..725e778dc 100644 --- a/src/esocial-esquemas/src/main/resources/xsd/tipos.xsd +++ b/src/esocial-esquemas/src/main/resources/xsd/tipos.xsd @@ -380,7 +380,7 @@ Identificação dos advogados. CHAVE_GRUPO: {tpInsc}, {nrInsc} - CONDICAO_GRUPO: OC + CONDICAO_GRUPO: O (se {vlrDespAdvogados}(../despProcJud_vlrDespAdvogados) > 0); N (nos demais casos) @@ -826,7 +826,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2200 do respectivo vínculo trabalhista. @@ -842,7 +842,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2190, S-2200 ou S-2300 do respectivo contrato. Não preencher no caso de Trabalhador Sem Vínculo de Emprego/Estatutário - TSVE sem informação de matrícula no evento S-2300. @@ -865,7 +865,7 @@ - + Matrícula atribuída ao trabalhador pela empresa ou, no caso de servidor público, a matrícula constante no Sistema de Administração de Recursos Humanos do órgão. Validação: Deve corresponder à matrícula informada pelo empregador no evento S-2190 ou S-2200 do respectivo vínculo trabalhista. @@ -1155,7 +1155,7 @@ Informar o número de inscrição do empregador anterior, de acordo com o tipo de inscrição indicado no campo {sucessaoVinc/tpInsc}(./tpInsc). - + Matrícula do trabalhador no empregador anterior. @@ -2202,6 +2202,15 @@ + + + + + + + + + @@ -2241,7 +2250,7 @@ Matrícula do trabalhador no empregador anterior. - + @@ -2280,6 +2289,7 @@ Dia do mês efetivamente trabalhado pelo empregado com contrato de trabalho intermitente. Caso não tenha havido trabalho no mês, informar 0 (zero). Validação: Deve ser um número entre 0 e 31, de acordo com o calendário anual. + Retornar alerta caso seja informado 0 (zero). @@ -2514,6 +2524,11 @@ Sentença judicial (exceto reclamatória trabalhista) + + + Parcelas complementares conhecidas após o fechamento da folha + + @@ -2534,6 +2549,11 @@ Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital + + + Sentença judicial (exceto reclamatória trabalhista) + + @@ -3111,7 +3131,7 @@ Etnia e raça do trabalhador, conforme sua autoclassificação (art. 39, § 8º, da Lei 12.288/2010). - Validação: Retornar alerta caso seja informado o valor [6]. + Validação: Não pode ser informado o valor [6]. @@ -3119,7 +3139,7 @@ Etnia e raça do beneficiário, conforme sua autoclassificação (art. 39, § 8º, da Lei 12.288/2010). - Validação: Retornar alerta caso seja informado o valor [6]. + Validação: Não pode ser informado o valor [6]. @@ -3957,15 +3977,6 @@ - - - - - - - - - diff --git a/src/esocial-jt-service/src/main/resources/application.properties b/src/esocial-jt-service/src/main/resources/application.properties index 24cdf0c0a..e95d24a6d 100644 --- a/src/esocial-jt-service/src/main/resources/application.properties +++ b/src/esocial-jt-service/src/main/resources/application.properties @@ -4,7 +4,7 @@ server.servlet.contextPath=/esocial-jt-service #eSocial-JT esocialjt.cnpj-empregador=00509968000148 esocialjt.ambiente=PRODUCAO_RESTRITA -esocialjt.arquivoCertificado= +esocialjt.arquivoCertificado=/config/esocial.pfx esocialjt.tipoCertificado=pkcs12 esocialjt.aliasCertificado= esocialjt.senhaCertificado= @@ -27,7 +27,7 @@ esocialjt.regra-empregador-cadastrado.habilitado=true #esocialjt.nrInscIdeTransmissor= cpf do transmissor #Database -spring.datasource.url=jdbc:postgresql://localhost/postgres +spring.datasource.url=jdbc:postgresql://esocial-db/postgres spring.datasource.username=postgres spring.datasource.password=esocial spring.datasource.driver-class-name=org.postgresql.Driver @@ -37,6 +37,8 @@ spring.jpa.open-in-view=false #Flyway - criacao automatica dos esquemas de banco de dados spring.flyway.enabled=true +# spring.flyway.default-schema=public +spring.flyway.baseline-on-migrate=true #Management management.endpoints.web.exposure.include=info, health, esocialhealth From 4e7592e7ff289194fa593136c9d28f19e0b944d1 Mon Sep 17 00:00:00 2001 From: t321065 Date: Wed, 17 Jul 2024 18:26:13 -0300 Subject: [PATCH 17/25] [FEAT] - Adiciona novas etapas na pipeline. --- .gitlab-ci.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 27ea5f347..f997c9298 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,6 +74,37 @@ deploy_backend_desenv: dependencies: - build_backend +deploy_backend_desenv_teste: + <<: *template_deploy + rules: + - if: $CI_COMMIT_TAG =~ /^teste-.*$/ + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/src + IMAGE_NAME: ${IMAGE_NAME_STAGE} + SERVICE_NAME: esocial-jt-backend-teste + IMAGE_TAG: desenv-teste + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE + dependencies: + - build_backend + +deploy_frontend_desenv_teste: + <<: *template_deploy + rules: + - if: $CI_COMMIT_TAG =~ /^teste-.*$/ + variables: + DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile + CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend + IMAGE_NAME: ${IMAGE_NAME_STAGE} + SERVICE_NAME: esocial-jt-frontend-teste + IMAGE_TAG: desenv-teste + before_script: + - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE + dependencies: + - build_backend + - build_frontend + deploy_frontend_desenv: <<: *template_deploy rules: From b42c572c0e30d92b3fb4c8f2dd054bd5eadadc6b Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Fri, 19 Jul 2024 11:27:17 -0300 Subject: [PATCH 18/25] devcontainer para desenvolvimento no vscode --- .devcontainer/Dockerfile | 37 ++++++++++++++++++++++++ .devcontainer/README.md | 29 +++++++++++++++++++ .devcontainer/devcontainer.json | 26 +++++++++++++++++ .devcontainer/docker-compose.yml | 49 ++++++++++++++++++++++++++++++++ .devcontainer/download_xsd.sh | 35 +++++++++++++++++++++++ .devcontainer/iniciar.sh | 40 ++++++++++++++++++++++++++ 6 files changed, 216 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/README.md create mode 100644 .devcontainer/devcontainer.json create mode 100644 .devcontainer/docker-compose.yml create mode 100755 .devcontainer/download_xsd.sh create mode 100755 .devcontainer/iniciar.sh diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..ed49c30e7 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,37 @@ +# Use a imagem base com OpenJDK 8 e Maven +FROM adoptopenjdk/maven-openjdk8 + +# Configurações de ambiente +ENV LANG=en_US.UTF-8 \ + LANGUAGE=en_US.UTF-8 \ + LC_CTYPE=en_US.UTF-8 \ + LC_ALL=en_US.UTF-8 \ + TZ=America/Sao_Paulo \ + DEBIAN_FRONTEND=noninteractive + +# Atualize e instale dependências adicionais +RUN apt-get update && \ + # comentei porque a aplicação utiliza ainda a versão 8 do openjdk + # apt-get upgrade -y && \ + apt-get install -y tzdata curl git zip && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + +# Configurar o fuso horário +RUN ln -fs /usr/share/zoneinfo/America/Sao_Paulo /etc/localtime && \ + echo "America/Sao_Paulo" > /etc/timezone && \ + dpkg-reconfigure -f noninteractive tzdata + +# Criar e usar um usuário não root +RUN addgroup esocial && adduser --disabled-password --gecos "" --ingroup esocial esocial +USER esocial + +# Configurar o diretório de trabalho +WORKDIR /workspace + +# Expor a porta necessária +EXPOSE 8080 + +# Comando para manter o contêiner ativo +CMD ["tail", "-f", "/dev/null"] + diff --git a/.devcontainer/README.md b/.devcontainer/README.md new file mode 100644 index 000000000..78f7b7ea6 --- /dev/null +++ b/.devcontainer/README.md @@ -0,0 +1,29 @@ +# Como instalar o ambiente usando VSCODE + +## Instalação inicial + +1) Na raiz do projeto, rode esse comando abaixo: + +```shellscript +$ ./.devcontainer/iniciar.sh +``` + +Obs.: Não comitar o arquivo [application.properties](../src/esocial-jt-service/src/main/resources/application.properties) as variáveis alteradas com relação ao certificado. + +2) Abre o projeto em modo `devcontainer` e aguarde toda a instalação + +## Atualizar os arquivos XSDs + +1) Dentro do devcontainer, rode o comando que vai substituir todos os arquivos XSDs: + +```shellscript +$ ./.devcontainer/download_xsd.sh +``` + +2) Depois rode o comando abaixo para recompilar e testar tudo: + +``shellscript +$ mvn clean verify -f /workspace/src/pom.xml +``` + +3) Para subir a aplicação, vá no ícone à esquerda chamado de `Spring Boot Dashboard` e dê o play no app `esocial-jt-service` e aguarde subir a aplicação. diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..8f6faa535 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,26 @@ +{ + "name": "esocial DevContainer", + "dockerComposeFile": "docker-compose.yml", + "service": "app", + "runServices": [ + "frontend", + "db" + ], + "workspaceFolder": "/workspace", + "postCreateCommand": "mvn clean verify -f /workspace/src/pom.xml", + "remoteUser": "esocial", + "shutdownAction": "stopCompose", + "customizations": { + "vscode": { + "extensions": [ + "vscjava.vscode-java-pack", + "ms-azuretools.vscode-docker", + "redhat.vscode-yaml", + "vmware.vscode-boot-dev-pack" + ] + } + }, + "mounts": [ + "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached" + ] +} \ No newline at end of file diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml new file mode 100644 index 000000000..04d7beb17 --- /dev/null +++ b/.devcontainer/docker-compose.yml @@ -0,0 +1,49 @@ +version: "3.5" +services: + frontend: + image: tstlabs/esocial-jt-frontend:latest + container_name: esocial-jt-frontend + ports: + - "80:8080" + depends_on: + - app + networks: + - esocial-net + + app: + build: + context: . + dockerfile: Dockerfile + container_name: esocial-jt-service + ports: + - "8080:8080" + depends_on: + - db + networks: + - esocial-net + volumes: + - "../config:/config" + environment: + - spring.datasource.url=jdbc:postgresql://esocial-db/postgres + - spring.flyway.baseline-on-migrate=true + - esocialjt.arquivoCertificado=/config/esocial.pfx + + db: + image: postgres:10 + container_name: esocial-db + volumes: + - postgres:/var/lib/postgresql/data + ports: + - "5432:5432" + networks: + - esocial-net + environment: + - POSTGRES_PASSWORD=esocial + +networks: + esocial-net: + name: esocial-net + driver: bridge + +volumes: + postgres: \ No newline at end of file diff --git a/.devcontainer/download_xsd.sh b/.devcontainer/download_xsd.sh new file mode 100755 index 000000000..3cfa49df7 --- /dev/null +++ b/.devcontainer/download_xsd.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +# Solicitar a URL do arquivo ZIP como input +read -p "Insira a URL do arquivo ZIP: " ZIP_URL + +# Diretório de destino para os arquivos XSD +DEST_DIR="/workspace/src/esocial-esquemas/src/main/resources/xsd" + +# Baixar o arquivo ZIP usando curl +echo "Baixando o arquivo ZIP..." +curl -sSLO "$ZIP_URL" + +# Verificar se o download foi concluído com sucesso +if [ $? -ne 0 ]; then + echo "Erro ao baixar o arquivo ZIP." + exit 1 +fi + +# Criar o diretório de destino, se ainda não existir +mkdir -p "$DEST_DIR" + +# Extrair os arquivos XSD para o diretório de destino +echo "Extraindo os arquivos XSD..." +unzip -qq "$(basename "$ZIP_URL")" -d "$DEST_DIR" + +# Verificar se a extração foi bem-sucedida +if [ $? -ne 0 ]; then + echo "Erro ao extrair os arquivos XSD." + exit 1 +fi + +# Remover o arquivo ZIP após a extração +rm "$(basename "$ZIP_URL")" + +echo "Arquivos XSD extraídos com sucesso em: $DEST_DIR" \ No newline at end of file diff --git a/.devcontainer/iniciar.sh b/.devcontainer/iniciar.sh new file mode 100755 index 000000000..02cda3106 --- /dev/null +++ b/.devcontainer/iniciar.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +CNPJ_TRIBUNAL=531954000120 +CAMINHO_CERTIFICADO=/config/esocial.pfx + +# Limpa containers, volumes e caches +echo -e "\n" + docker-compose down -v --remove-orphans && \ + docker volume prune --force && \ + docker system prune --force + +# Loop para solicitar o diretório de origem do certificado até que um caminho válido seja fornecido +while true; do + read -p "Insira somente o diretório completo onde está o certificado esocial.pfx: " DIRETORIO_ORIGEM + echo ${DIRETORIO_ORIGEM} + if [ -f "${DIRETORIO_ORIGEM}/esocial.pfx" ]; then + cp "${DIRETORIO_ORIGEM}/esocial.pfx" ".${CAMINHO_CERTIFICADO}" + break + else + echo "O arquivo esocial.pfx não foi encontrado no diretório especificado. Tente novamente." + fi +done + +# Copiar o arquivo de exemplo para o arquivo de configuração real +cp ./config/application.properties.example ./config/application.properties + +# Solicitar a senha do certificado ao usuário de forma silenciosa +read -s -p "Insira a senha do certificado eSocial: " SENHA_CERTIFICADO + +# Substituir os valores dos atributos no arquivo application.properties da pasta config/ +sed -i "s/^esocialjt.cnpj-empregador=.*/esocialjt.cnpj-empregador=${CNPJ_TRIBUNAL}/" ./config/application.properties +sed -i "s|^esocialjt.senhaCertificado=.*|esocialjt.senhaCertificado=$(printf '%s\n' "$SENHA_CERTIFICADO" | sed 's|[&/\]|\\&|g')|" ./config/application.properties +sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINHO_CERTIFICADO}|" ./config/application.properties + +# Substituir os valores dos atributos no arquivo application.properties da pasta /src/esocial-jt-service/ +sed -i "s/^esocialjt.cnpj-empregador=.*/esocialjt.cnpj-empregador=${CNPJ_TRIBUNAL}/" ./src/esocial-jt-service/src/main/resources/application.properties +sed -i "s|^esocialjt.senhaCertificado=.*|esocialjt.senhaCertificado=$(printf '%s\n' "$SENHA_CERTIFICADO" | sed 's|[&/\]|\\&|g')|" ./src/esocial-jt-service/src/main/resources/application.properties +sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINHO_CERTIFICADO}|" ./src/esocial-jt-service/src/main/resources/application.properties + +echo "Configuração concluída." From a2a475f7dced044629c9e5e54ce176c7f30e8c59 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Thu, 1 Aug 2024 18:48:18 -0300 Subject: [PATCH 19/25] Atualizao dos enuns do TpAcConv --- .../jus/tst/esocial/dominio/enums/TpAcConv.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/esocial-jt-dominio/src/main/java/br/jus/tst/esocial/dominio/enums/TpAcConv.java b/src/esocial-jt-dominio/src/main/java/br/jus/tst/esocial/dominio/enums/TpAcConv.java index 090bc4e50..6e2f9cd61 100644 --- a/src/esocial-jt-dominio/src/main/java/br/jus/tst/esocial/dominio/enums/TpAcConv.java +++ b/src/esocial-jt-dominio/src/main/java/br/jus/tst/esocial/dominio/enums/TpAcConv.java @@ -50,7 +50,21 @@ public enum TpAcConv { * periódicos * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + * + */ + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + * + */ + J; public String value() { return name(); From 904c11597399d69d80f968d3104e745292fe2030 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Fri, 2 Aug 2024 09:42:43 -0300 Subject: [PATCH 20/25] Ambiente de desenv para vscode --- .devcontainer/Dockerfile | 37 ++++++++++++++++++++++++ .devcontainer/README.md | 29 +++++++++++++++++++ .devcontainer/devcontainer.json | 26 +++++++++++++++++ .devcontainer/docker-compose.yml | 49 ++++++++++++++++++++++++++++++++ .devcontainer/download_xsd.sh | 35 +++++++++++++++++++++++ .devcontainer/iniciar.sh | 40 ++++++++++++++++++++++++++ 6 files changed, 216 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/README.md create mode 100644 .devcontainer/devcontainer.json create mode 100644 .devcontainer/docker-compose.yml create mode 100755 .devcontainer/download_xsd.sh create mode 100755 .devcontainer/iniciar.sh diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..ed49c30e7 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,37 @@ +# Use a imagem base com OpenJDK 8 e Maven +FROM adoptopenjdk/maven-openjdk8 + +# Configurações de ambiente +ENV LANG=en_US.UTF-8 \ + LANGUAGE=en_US.UTF-8 \ + LC_CTYPE=en_US.UTF-8 \ + LC_ALL=en_US.UTF-8 \ + TZ=America/Sao_Paulo \ + DEBIAN_FRONTEND=noninteractive + +# Atualize e instale dependências adicionais +RUN apt-get update && \ + # comentei porque a aplicação utiliza ainda a versão 8 do openjdk + # apt-get upgrade -y && \ + apt-get install -y tzdata curl git zip && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + +# Configurar o fuso horário +RUN ln -fs /usr/share/zoneinfo/America/Sao_Paulo /etc/localtime && \ + echo "America/Sao_Paulo" > /etc/timezone && \ + dpkg-reconfigure -f noninteractive tzdata + +# Criar e usar um usuário não root +RUN addgroup esocial && adduser --disabled-password --gecos "" --ingroup esocial esocial +USER esocial + +# Configurar o diretório de trabalho +WORKDIR /workspace + +# Expor a porta necessária +EXPOSE 8080 + +# Comando para manter o contêiner ativo +CMD ["tail", "-f", "/dev/null"] + diff --git a/.devcontainer/README.md b/.devcontainer/README.md new file mode 100644 index 000000000..78f7b7ea6 --- /dev/null +++ b/.devcontainer/README.md @@ -0,0 +1,29 @@ +# Como instalar o ambiente usando VSCODE + +## Instalação inicial + +1) Na raiz do projeto, rode esse comando abaixo: + +```shellscript +$ ./.devcontainer/iniciar.sh +``` + +Obs.: Não comitar o arquivo [application.properties](../src/esocial-jt-service/src/main/resources/application.properties) as variáveis alteradas com relação ao certificado. + +2) Abre o projeto em modo `devcontainer` e aguarde toda a instalação + +## Atualizar os arquivos XSDs + +1) Dentro do devcontainer, rode o comando que vai substituir todos os arquivos XSDs: + +```shellscript +$ ./.devcontainer/download_xsd.sh +``` + +2) Depois rode o comando abaixo para recompilar e testar tudo: + +``shellscript +$ mvn clean verify -f /workspace/src/pom.xml +``` + +3) Para subir a aplicação, vá no ícone à esquerda chamado de `Spring Boot Dashboard` e dê o play no app `esocial-jt-service` e aguarde subir a aplicação. diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..8f6faa535 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,26 @@ +{ + "name": "esocial DevContainer", + "dockerComposeFile": "docker-compose.yml", + "service": "app", + "runServices": [ + "frontend", + "db" + ], + "workspaceFolder": "/workspace", + "postCreateCommand": "mvn clean verify -f /workspace/src/pom.xml", + "remoteUser": "esocial", + "shutdownAction": "stopCompose", + "customizations": { + "vscode": { + "extensions": [ + "vscjava.vscode-java-pack", + "ms-azuretools.vscode-docker", + "redhat.vscode-yaml", + "vmware.vscode-boot-dev-pack" + ] + } + }, + "mounts": [ + "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached" + ] +} \ No newline at end of file diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml new file mode 100644 index 000000000..04d7beb17 --- /dev/null +++ b/.devcontainer/docker-compose.yml @@ -0,0 +1,49 @@ +version: "3.5" +services: + frontend: + image: tstlabs/esocial-jt-frontend:latest + container_name: esocial-jt-frontend + ports: + - "80:8080" + depends_on: + - app + networks: + - esocial-net + + app: + build: + context: . + dockerfile: Dockerfile + container_name: esocial-jt-service + ports: + - "8080:8080" + depends_on: + - db + networks: + - esocial-net + volumes: + - "../config:/config" + environment: + - spring.datasource.url=jdbc:postgresql://esocial-db/postgres + - spring.flyway.baseline-on-migrate=true + - esocialjt.arquivoCertificado=/config/esocial.pfx + + db: + image: postgres:10 + container_name: esocial-db + volumes: + - postgres:/var/lib/postgresql/data + ports: + - "5432:5432" + networks: + - esocial-net + environment: + - POSTGRES_PASSWORD=esocial + +networks: + esocial-net: + name: esocial-net + driver: bridge + +volumes: + postgres: \ No newline at end of file diff --git a/.devcontainer/download_xsd.sh b/.devcontainer/download_xsd.sh new file mode 100755 index 000000000..3cfa49df7 --- /dev/null +++ b/.devcontainer/download_xsd.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +# Solicitar a URL do arquivo ZIP como input +read -p "Insira a URL do arquivo ZIP: " ZIP_URL + +# Diretório de destino para os arquivos XSD +DEST_DIR="/workspace/src/esocial-esquemas/src/main/resources/xsd" + +# Baixar o arquivo ZIP usando curl +echo "Baixando o arquivo ZIP..." +curl -sSLO "$ZIP_URL" + +# Verificar se o download foi concluído com sucesso +if [ $? -ne 0 ]; then + echo "Erro ao baixar o arquivo ZIP." + exit 1 +fi + +# Criar o diretório de destino, se ainda não existir +mkdir -p "$DEST_DIR" + +# Extrair os arquivos XSD para o diretório de destino +echo "Extraindo os arquivos XSD..." +unzip -qq "$(basename "$ZIP_URL")" -d "$DEST_DIR" + +# Verificar se a extração foi bem-sucedida +if [ $? -ne 0 ]; then + echo "Erro ao extrair os arquivos XSD." + exit 1 +fi + +# Remover o arquivo ZIP após a extração +rm "$(basename "$ZIP_URL")" + +echo "Arquivos XSD extraídos com sucesso em: $DEST_DIR" \ No newline at end of file diff --git a/.devcontainer/iniciar.sh b/.devcontainer/iniciar.sh new file mode 100755 index 000000000..02cda3106 --- /dev/null +++ b/.devcontainer/iniciar.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +CNPJ_TRIBUNAL=531954000120 +CAMINHO_CERTIFICADO=/config/esocial.pfx + +# Limpa containers, volumes e caches +echo -e "\n" + docker-compose down -v --remove-orphans && \ + docker volume prune --force && \ + docker system prune --force + +# Loop para solicitar o diretório de origem do certificado até que um caminho válido seja fornecido +while true; do + read -p "Insira somente o diretório completo onde está o certificado esocial.pfx: " DIRETORIO_ORIGEM + echo ${DIRETORIO_ORIGEM} + if [ -f "${DIRETORIO_ORIGEM}/esocial.pfx" ]; then + cp "${DIRETORIO_ORIGEM}/esocial.pfx" ".${CAMINHO_CERTIFICADO}" + break + else + echo "O arquivo esocial.pfx não foi encontrado no diretório especificado. Tente novamente." + fi +done + +# Copiar o arquivo de exemplo para o arquivo de configuração real +cp ./config/application.properties.example ./config/application.properties + +# Solicitar a senha do certificado ao usuário de forma silenciosa +read -s -p "Insira a senha do certificado eSocial: " SENHA_CERTIFICADO + +# Substituir os valores dos atributos no arquivo application.properties da pasta config/ +sed -i "s/^esocialjt.cnpj-empregador=.*/esocialjt.cnpj-empregador=${CNPJ_TRIBUNAL}/" ./config/application.properties +sed -i "s|^esocialjt.senhaCertificado=.*|esocialjt.senhaCertificado=$(printf '%s\n' "$SENHA_CERTIFICADO" | sed 's|[&/\]|\\&|g')|" ./config/application.properties +sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINHO_CERTIFICADO}|" ./config/application.properties + +# Substituir os valores dos atributos no arquivo application.properties da pasta /src/esocial-jt-service/ +sed -i "s/^esocialjt.cnpj-empregador=.*/esocialjt.cnpj-empregador=${CNPJ_TRIBUNAL}/" ./src/esocial-jt-service/src/main/resources/application.properties +sed -i "s|^esocialjt.senhaCertificado=.*|esocialjt.senhaCertificado=$(printf '%s\n' "$SENHA_CERTIFICADO" | sed 's|[&/\]|\\&|g')|" ./src/esocial-jt-service/src/main/resources/application.properties +sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINHO_CERTIFICADO}|" ./src/esocial-jt-service/src/main/resources/application.properties + +echo "Configuração concluída." From a8707dc1fd12e5f4cd1e4d0f954e7620fe31fefa Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Fri, 2 Aug 2024 09:45:43 -0300 Subject: [PATCH 21/25] =?UTF-8?q?Gera=C3=A7=C3=A3o=20de=20novas=20classes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/META-INF/sun-jaxb.episode | 8 +- .../eventos/CanonicalizationMethodType.java | 16 +- .../eventos/DSAKeyValueType.java | 40 +-- .../eventos/DigestMethodType.java | 18 +- .../identificadores/eventos/ESocial.java | 28 +- .../identificadores/eventos/KeyInfoType.java | 36 +- .../identificadores/eventos/KeyValueType.java | 16 +- .../identificadores/eventos/ManifestType.java | 16 +- .../eventos/ObjectFactory.java | 78 ++--- .../identificadores/eventos/ObjectType.java | 26 +- .../identificadores/eventos/PGPDataType.java | 32 +- .../eventos/RSAKeyValueType.java | 20 +- .../eventos/ReferenceType.java | 36 +- .../eventos/RetrievalMethodType.java | 24 +- .../identificadores/eventos/SPKIDataType.java | 14 +- .../eventos/SignatureMethodType.java | 18 +- .../eventos/SignaturePropertiesType.java | 16 +- .../eventos/SignaturePropertyType.java | 22 +- .../eventos/SignatureType.java | 28 +- .../eventos/SignatureValueType.java | 20 +- .../eventos/SignedInfoType.java | 24 +- .../eventos/TConsultaEventosEmpregador.java | 20 +- .../eventos/TConsultaEventosTabela.java | 28 +- .../eventos/TConsultaEventosTrabalhador.java | 24 +- .../eventos/TIdeEmpregador.java | 20 +- ...RetornoConsultaIdentificadoresEventos.java | 40 +-- .../identificadores/eventos/TStatus.java | 20 +- .../eventos/TransformType.java | 18 +- .../eventos/TransformsType.java | 12 +- .../identificadores/eventos/X509DataType.java | 22 +- .../eventos/X509IssuerSerialType.java | 20 +- .../identificadores/eventos/package-info.java | 8 +- .../evento/CanonicalizationMethodType.java | 16 +- .../retorno/evento/DSAKeyValueType.java | 40 +-- .../retorno/evento/DigestMethodType.java | 18 +- .../eventos/retorno/evento/ESocial.java | 44 +-- .../eventos/retorno/evento/KeyInfoType.java | 34 +- .../eventos/retorno/evento/KeyValueType.java | 18 +- .../eventos/retorno/evento/ManifestType.java | 16 +- .../eventos/retorno/evento/ObjectFactory.java | 68 ++-- .../eventos/retorno/evento/ObjectType.java | 26 +- .../eventos/retorno/evento/PGPDataType.java | 34 +- .../retorno/evento/RSAKeyValueType.java | 20 +- .../eventos/retorno/evento/ReferenceType.java | 36 +- .../retorno/evento/RetrievalMethodType.java | 24 +- .../eventos/retorno/evento/SPKIDataType.java | 16 +- .../retorno/evento/SignatureMethodType.java | 18 +- .../evento/SignaturePropertiesType.java | 16 +- .../retorno/evento/SignaturePropertyType.java | 22 +- .../eventos/retorno/evento/SignatureType.java | 28 +- .../retorno/evento/SignatureValueType.java | 20 +- .../retorno/evento/SignedInfoType.java | 24 +- .../evento/TDadosProcessamentoEvento.java | 32 +- .../retorno/evento/TDadosRecepcao.java | 28 +- .../eventos/retorno/evento/TDadosRecibo.java | 312 +++++++++--------- .../retorno/evento/TIdeEmpregador.java | 20 +- .../eventos/retorno/evento/TOcorrencias.java | 32 +- .../eventos/retorno/evento/TransformType.java | 22 +- .../retorno/evento/TransformsType.java | 12 +- .../eventos/retorno/evento/X509DataType.java | 28 +- .../retorno/evento/X509IssuerSerialType.java | 20 +- .../eventos/retorno/evento/package-info.java | 8 +- .../eventos/CanonicalizationMethodType.java | 18 +- .../download/eventos/DSAKeyValueType.java | 40 +-- .../download/eventos/DigestMethodType.java | 18 +- .../solicitacao/download/eventos/ESocial.java | 32 +- .../download/eventos/KeyInfoType.java | 34 +- .../download/eventos/KeyValueType.java | 22 +- .../download/eventos/ManifestType.java | 16 +- .../download/eventos/ObjectFactory.java | 58 ++-- .../download/eventos/ObjectType.java | 26 +- .../download/eventos/PGPDataType.java | 28 +- .../download/eventos/RSAKeyValueType.java | 20 +- .../download/eventos/ReferenceType.java | 36 +- .../download/eventos/RetrievalMethodType.java | 24 +- .../download/eventos/SPKIDataType.java | 14 +- .../download/eventos/SignatureMethodType.java | 20 +- .../eventos/SignaturePropertiesType.java | 16 +- .../eventos/SignaturePropertyType.java | 22 +- .../download/eventos/SignatureType.java | 28 +- .../download/eventos/SignatureValueType.java | 20 +- .../download/eventos/SignedInfoType.java | 24 +- .../download/eventos/TEventoeSocial.java | 20 +- .../download/eventos/TIdeEmpregador.java | 20 +- .../download/eventos/TReciboeSocial.java | 20 +- .../TRetornoSolicitacaoDownloadEvento.java | 36 +- .../TSolicitacaoDownloadPorIdEvento.java | 12 +- .../TSolicitacaoDownloadPorNrRecibo.java | 12 +- .../solicitacao/download/eventos/TStatus.java | 20 +- .../download/eventos/TransformType.java | 18 +- .../download/eventos/TransformsType.java | 12 +- .../download/eventos/X509DataType.java | 24 +- .../eventos/X509IssuerSerialType.java | 20 +- .../download/eventos/package-info.java | 8 +- .../lote/eventos/consulta/ESocial.java | 24 +- .../lote/eventos/consulta/ObjectFactory.java | 8 +- .../lote/eventos/consulta/package-info.java | 8 +- .../lote/eventos/envio/ESocial.java | 40 +-- .../lote/eventos/envio/ObjectFactory.java | 8 +- .../lote/eventos/envio/TArquivoEsocial.java | 20 +- .../lote/eventos/envio/TIdeEmpregador.java | 20 +- .../lote/eventos/envio/TIdeTransmissor.java | 20 +- .../lote/eventos/envio/package-info.java | 8 +- .../lote/eventos/retorno/envio/ESocial.java | 36 +- .../eventos/retorno/envio/ObjectFactory.java | 8 +- .../eventos/retorno/envio/TDadosRecepcao.java | 24 +- .../eventos/retorno/envio/TIdeEmpregador.java | 20 +- .../retorno/envio/TIdeTransmissor.java | 20 +- .../eventos/retorno/envio/TOcorrencias.java | 32 +- .../lote/eventos/retorno/envio/TStatus.java | 24 +- .../eventos/retorno/envio/package-info.java | 8 +- .../retorno/processamento/ESocial.java | 76 ++--- .../retorno/processamento/ObjectFactory.java | 8 +- .../processamento/TArquivoEsocial.java | 16 +- .../processamento/TDadosProcessamento.java | 16 +- .../retorno/processamento/TDadosRecepcao.java | 24 +- .../retorno/processamento/TIdeEmpregador.java | 20 +- .../processamento/TIdeTransmissor.java | 20 +- .../retorno/processamento/TOcorrencias.java | 32 +- .../retorno/processamento/TStatus.java | 28 +- .../retorno/processamento/package-info.java | 8 +- ...ultarIdentificadoresEventosEmpregador.java | 24 +- ...ntificadoresEventosEmpregadorResponse.java | 24 +- ...ConsultarIdentificadoresEventosTabela.java | 24 +- ...rIdentificadoresEventosTabelaResponse.java | 24 +- ...ltarIdentificadoresEventosTrabalhador.java | 24 +- ...tificadoresEventosTrabalhadorResponse.java | 24 +- .../wsdl/ConsultarLoteEventos.java | 24 +- .../wsdl/ConsultarLoteEventosResponse.java | 24 +- .../comunicacao/wsdl/EnviarLoteEventos.java | 24 +- .../wsdl/EnviarLoteEventosResponse.java | 24 +- .../comunicacao/wsdl/ObjectFactory.java | 8 +- .../wsdl/SolicitarDownloadEventosPorId.java | 24 +- ...SolicitarDownloadEventosPorIdResponse.java | 24 +- .../SolicitarDownloadEventosPorNrRecibo.java | 24 +- ...tarDownloadEventosPorNrReciboResponse.java | 24 +- .../comunicacao/wsdl/package-info.java | 8 +- .../admissao/CanonicalizationMethodType.java | 2 +- .../eventos/admissao/DSAKeyValueType.java | 2 +- .../eventos/admissao/DigestMethodType.java | 4 +- .../esquemas/eventos/admissao/ESocial.java | 24 +- .../eventos/admissao/KeyInfoType.java | 20 +- .../eventos/admissao/KeyValueType.java | 6 +- .../eventos/admissao/ManifestType.java | 2 +- .../eventos/admissao/ObjectFactory.java | 40 +-- .../esquemas/eventos/admissao/ObjectType.java | 4 +- .../eventos/admissao/PGPDataType.java | 8 +- .../eventos/admissao/RSAKeyValueType.java | 2 +- .../eventos/admissao/ReferenceType.java | 2 +- .../eventos/admissao/RetrievalMethodType.java | 2 +- .../eventos/admissao/SPKIDataType.java | 6 +- .../eventos/admissao/SignatureMethodType.java | 4 +- .../admissao/SignaturePropertiesType.java | 2 +- .../admissao/SignaturePropertyType.java | 4 +- .../eventos/admissao/SignatureType.java | 2 +- .../eventos/admissao/SignatureValueType.java | 2 +- .../eventos/admissao/SignedInfoType.java | 2 +- .../eventos/admissao/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/admissao/TAprend.java | 2 +- .../esquemas/eventos/admissao/TContato.java | 2 +- .../esquemas/eventos/admissao/TDetReemb.java | 2 +- .../eventos/admissao/TDetReembTot.java | 2 +- .../eventos/admissao/TEnderecoBrasil.java | 2 +- .../eventos/admissao/TEnderecoExterior.java | 2 +- .../eventos/admissao/THorContratual.java | 2 +- .../eventos/admissao/TIdeBeneficio.java | 2 +- .../eventos/admissao/TIdeEmpregador.java | 2 +- .../eventos/admissao/TIdeEmpregadorCnpj.java | 2 +- .../admissao/TIdeEmpregadorExclusao.java | 2 +- .../eventos/admissao/TIdeEventoEvtTab.java | 2 +- .../admissao/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/admissao/TIdeEventoExclusao.java | 2 +- .../admissao/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/admissao/TIdeEventoFolha.java | 2 +- .../admissao/TIdeEventoFolhaMensal.java | 2 +- .../admissao/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/admissao/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../admissao/TIdeEventoRetornoContrib.java | 2 +- .../admissao/TIdeEventoRetornoMensal.java | 2 +- .../admissao/TIdeEventoRetornoTrab.java | 2 +- .../eventos/admissao/TIdeEventoTrab.java | 2 +- .../admissao/TIdeEventoTrabAdmissao.java | 2 +- .../admissao/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/admissao/TIdeEventoTrabJud.java | 2 +- .../eventos/admissao/TIdeEventoTrabPJ.java | 2 +- .../eventos/admissao/TIdeTrabSemVinculo.java | 2 +- .../eventos/admissao/TIdeVinculo.java | 4 +- .../eventos/admissao/TIdeVinculoBaixa.java | 4 +- .../eventos/admissao/TIdeVinculoSst.java | 4 +- .../eventos/admissao/TInfoEstagiario.java | 2 +- .../eventos/admissao/TInfoInterm.java | 2 +- .../esquemas/eventos/admissao/TInfoMV.java | 2 +- .../esquemas/eventos/admissao/TInfoRRA.java | 2 +- .../eventos/admissao/TInfoSimples.java | 2 +- .../eventos/admissao/TItensRemunRpps.java | 2 +- .../eventos/admissao/TLocalTrabGeral.java | 2 +- .../eventos/admissao/TNascimento.java | 2 +- .../eventos/admissao/TNovaValidade.java | 2 +- .../eventos/admissao/TProcJudTrab.java | 2 +- .../eventos/admissao/TRemuneracao.java | 2 +- .../esquemas/eventos/admissao/TSSexo.java | 2 +- .../esquemas/eventos/admissao/TSSim.java | 2 +- .../esquemas/eventos/admissao/TSSimNao.java | 2 +- .../esquemas/eventos/admissao/TSTpAcConv.java | 11 +- .../eventos/admissao/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/admissao/TSUf.java | 2 +- .../eventos/admissao/TSucessaoVinc.java | 4 +- .../esquemas/eventos/admissao/TTreiCap.java | 2 +- .../eventos/admissao/TransformType.java | 4 +- .../eventos/admissao/TransformsType.java | 2 +- .../eventos/admissao/X509DataType.java | 10 +- .../admissao/X509IssuerSerialType.java | 2 +- .../eventos/admissao/package-info.java | 2 +- .../admprelim/CanonicalizationMethodType.java | 2 +- .../eventos/admprelim/DSAKeyValueType.java | 2 +- .../eventos/admprelim/DigestMethodType.java | 4 +- .../esquemas/eventos/admprelim/ESocial.java | 2 +- .../eventos/admprelim/KeyInfoType.java | 20 +- .../eventos/admprelim/KeyValueType.java | 10 +- .../eventos/admprelim/ManifestType.java | 2 +- .../eventos/admprelim/ObjectFactory.java | 84 ++--- .../eventos/admprelim/ObjectType.java | 4 +- .../eventos/admprelim/PGPDataType.java | 14 +- .../eventos/admprelim/RSAKeyValueType.java | 2 +- .../eventos/admprelim/ReferenceType.java | 2 +- .../admprelim/RetrievalMethodType.java | 2 +- .../eventos/admprelim/SPKIDataType.java | 2 +- .../admprelim/SignatureMethodType.java | 4 +- .../admprelim/SignaturePropertiesType.java | 2 +- .../admprelim/SignaturePropertyType.java | 4 +- .../eventos/admprelim/SignatureType.java | 2 +- .../eventos/admprelim/SignatureValueType.java | 2 +- .../eventos/admprelim/SignedInfoType.java | 2 +- .../eventos/admprelim/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/admprelim/TAprend.java | 2 +- .../esquemas/eventos/admprelim/TContato.java | 2 +- .../esquemas/eventos/admprelim/TDetReemb.java | 2 +- .../eventos/admprelim/TDetReembTot.java | 2 +- .../eventos/admprelim/TEnderecoBrasil.java | 2 +- .../eventos/admprelim/TEnderecoExterior.java | 2 +- .../eventos/admprelim/THorContratual.java | 2 +- .../eventos/admprelim/TIdeBeneficio.java | 2 +- .../eventos/admprelim/TIdeEmpregador.java | 2 +- .../eventos/admprelim/TIdeEmpregadorCnpj.java | 2 +- .../admprelim/TIdeEmpregadorExclusao.java | 2 +- .../eventos/admprelim/TIdeEventoEvtTab.java | 2 +- .../admprelim/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/admprelim/TIdeEventoExclusao.java | 2 +- .../admprelim/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/admprelim/TIdeEventoFolha.java | 2 +- .../admprelim/TIdeEventoFolhaMensal.java | 2 +- .../admprelim/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/admprelim/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../admprelim/TIdeEventoRetornoContrib.java | 2 +- .../admprelim/TIdeEventoRetornoMensal.java | 2 +- .../admprelim/TIdeEventoRetornoTrab.java | 2 +- .../eventos/admprelim/TIdeEventoTrab.java | 2 +- .../admprelim/TIdeEventoTrabAdmissao.java | 2 +- .../admprelim/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/admprelim/TIdeEventoTrabJud.java | 2 +- .../eventos/admprelim/TIdeEventoTrabPJ.java | 2 +- .../eventos/admprelim/TIdeTrabSemVinculo.java | 2 +- .../eventos/admprelim/TIdeVinculo.java | 4 +- .../eventos/admprelim/TIdeVinculoBaixa.java | 4 +- .../eventos/admprelim/TIdeVinculoSst.java | 4 +- .../eventos/admprelim/TInfoEstagiario.java | 2 +- .../eventos/admprelim/TInfoInterm.java | 2 +- .../esquemas/eventos/admprelim/TInfoMV.java | 2 +- .../esquemas/eventos/admprelim/TInfoRRA.java | 2 +- .../eventos/admprelim/TInfoSimples.java | 2 +- .../eventos/admprelim/TItensRemunRpps.java | 2 +- .../eventos/admprelim/TLocalTrabGeral.java | 2 +- .../eventos/admprelim/TNascimento.java | 2 +- .../eventos/admprelim/TNovaValidade.java | 2 +- .../eventos/admprelim/TProcJudTrab.java | 2 +- .../eventos/admprelim/TRemuneracao.java | 2 +- .../esquemas/eventos/admprelim/TSSexo.java | 2 +- .../esquemas/eventos/admprelim/TSSim.java | 2 +- .../esquemas/eventos/admprelim/TSSimNao.java | 2 +- .../eventos/admprelim/TSTpAcConv.java | 11 +- .../eventos/admprelim/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/admprelim/TSUf.java | 2 +- .../eventos/admprelim/TSucessaoVinc.java | 4 +- .../esquemas/eventos/admprelim/TTreiCap.java | 2 +- .../eventos/admprelim/TransformType.java | 4 +- .../eventos/admprelim/TransformsType.java | 2 +- .../eventos/admprelim/X509DataType.java | 12 +- .../admprelim/X509IssuerSerialType.java | 2 +- .../eventos/admprelim/package-info.java | 2 +- .../afasttemp/CanonicalizationMethodType.java | 2 +- .../eventos/afasttemp/DSAKeyValueType.java | 2 +- .../eventos/afasttemp/DigestMethodType.java | 4 +- .../esquemas/eventos/afasttemp/ESocial.java | 8 +- .../eventos/afasttemp/KeyInfoType.java | 22 +- .../eventos/afasttemp/KeyValueType.java | 10 +- .../eventos/afasttemp/ManifestType.java | 2 +- .../eventos/afasttemp/ObjectFactory.java | 86 ++--- .../eventos/afasttemp/ObjectType.java | 4 +- .../eventos/afasttemp/PGPDataType.java | 10 +- .../eventos/afasttemp/RSAKeyValueType.java | 2 +- .../eventos/afasttemp/ReferenceType.java | 2 +- .../afasttemp/RetrievalMethodType.java | 2 +- .../eventos/afasttemp/SPKIDataType.java | 4 +- .../afasttemp/SignatureMethodType.java | 2 +- .../afasttemp/SignaturePropertiesType.java | 2 +- .../afasttemp/SignaturePropertyType.java | 4 +- .../eventos/afasttemp/SignatureType.java | 2 +- .../eventos/afasttemp/SignatureValueType.java | 2 +- .../eventos/afasttemp/SignedInfoType.java | 2 +- .../eventos/afasttemp/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/afasttemp/TAprend.java | 2 +- .../esquemas/eventos/afasttemp/TContato.java | 2 +- .../esquemas/eventos/afasttemp/TDetReemb.java | 2 +- .../eventos/afasttemp/TDetReembTot.java | 2 +- .../eventos/afasttemp/TEnderecoBrasil.java | 2 +- .../eventos/afasttemp/TEnderecoExterior.java | 2 +- .../eventos/afasttemp/THorContratual.java | 2 +- .../eventos/afasttemp/TIdeBeneficio.java | 2 +- .../eventos/afasttemp/TIdeEmpregador.java | 2 +- .../eventos/afasttemp/TIdeEmpregadorCnpj.java | 2 +- .../afasttemp/TIdeEmpregadorExclusao.java | 2 +- .../eventos/afasttemp/TIdeEventoEvtTab.java | 2 +- .../afasttemp/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/afasttemp/TIdeEventoExclusao.java | 2 +- .../afasttemp/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/afasttemp/TIdeEventoFolha.java | 2 +- .../afasttemp/TIdeEventoFolhaMensal.java | 2 +- .../afasttemp/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/afasttemp/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../afasttemp/TIdeEventoRetornoContrib.java | 2 +- .../afasttemp/TIdeEventoRetornoMensal.java | 2 +- .../afasttemp/TIdeEventoRetornoTrab.java | 2 +- .../eventos/afasttemp/TIdeEventoTrab.java | 2 +- .../afasttemp/TIdeEventoTrabAdmissao.java | 2 +- .../afasttemp/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/afasttemp/TIdeEventoTrabJud.java | 2 +- .../eventos/afasttemp/TIdeEventoTrabPJ.java | 2 +- .../eventos/afasttemp/TIdeTrabSemVinculo.java | 2 +- .../eventos/afasttemp/TIdeVinculo.java | 4 +- .../eventos/afasttemp/TIdeVinculoBaixa.java | 4 +- .../eventos/afasttemp/TIdeVinculoSst.java | 4 +- .../eventos/afasttemp/TInfoEstagiario.java | 2 +- .../eventos/afasttemp/TInfoInterm.java | 2 +- .../esquemas/eventos/afasttemp/TInfoMV.java | 2 +- .../esquemas/eventos/afasttemp/TInfoRRA.java | 2 +- .../eventos/afasttemp/TInfoSimples.java | 2 +- .../eventos/afasttemp/TItensRemunRpps.java | 2 +- .../eventos/afasttemp/TLocalTrabGeral.java | 2 +- .../eventos/afasttemp/TNascimento.java | 2 +- .../eventos/afasttemp/TNovaValidade.java | 2 +- .../eventos/afasttemp/TProcJudTrab.java | 2 +- .../eventos/afasttemp/TRemuneracao.java | 2 +- .../esquemas/eventos/afasttemp/TSSexo.java | 2 +- .../esquemas/eventos/afasttemp/TSSim.java | 2 +- .../esquemas/eventos/afasttemp/TSSimNao.java | 2 +- .../eventos/afasttemp/TSTpAcConv.java | 11 +- .../eventos/afasttemp/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/afasttemp/TSUf.java | 2 +- .../eventos/afasttemp/TSucessaoVinc.java | 4 +- .../esquemas/eventos/afasttemp/TTreiCap.java | 2 +- .../eventos/afasttemp/TransformType.java | 4 +- .../eventos/afasttemp/TransformsType.java | 2 +- .../eventos/afasttemp/X509DataType.java | 18 +- .../afasttemp/X509IssuerSerialType.java | 2 +- .../eventos/afasttemp/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/altcadastral/DSAKeyValueType.java | 2 +- .../altcadastral/DigestMethodType.java | 4 +- .../eventos/altcadastral/ESocial.java | 2 +- .../eventos/altcadastral/KeyInfoType.java | 20 +- .../eventos/altcadastral/KeyValueType.java | 10 +- .../eventos/altcadastral/ManifestType.java | 2 +- .../eventos/altcadastral/ObjectFactory.java | 62 ++-- .../eventos/altcadastral/ObjectType.java | 4 +- .../eventos/altcadastral/PGPDataType.java | 10 +- .../eventos/altcadastral/RSAKeyValueType.java | 2 +- .../eventos/altcadastral/ReferenceType.java | 2 +- .../altcadastral/RetrievalMethodType.java | 2 +- .../eventos/altcadastral/SPKIDataType.java | 4 +- .../altcadastral/SignatureMethodType.java | 4 +- .../altcadastral/SignaturePropertiesType.java | 2 +- .../altcadastral/SignaturePropertyType.java | 4 +- .../eventos/altcadastral/SignatureType.java | 2 +- .../altcadastral/SignatureValueType.java | 2 +- .../eventos/altcadastral/SignedInfoType.java | 2 +- .../eventos/altcadastral/TAlvaraJudicial.java | 2 +- .../eventos/altcadastral/TAprend.java | 2 +- .../eventos/altcadastral/TContato.java | 2 +- .../eventos/altcadastral/TDetReemb.java | 2 +- .../eventos/altcadastral/TDetReembTot.java | 2 +- .../eventos/altcadastral/TEnderecoBrasil.java | 2 +- .../altcadastral/TEnderecoExterior.java | 2 +- .../eventos/altcadastral/THorContratual.java | 2 +- .../eventos/altcadastral/TIdeBeneficio.java | 2 +- .../eventos/altcadastral/TIdeEmpregador.java | 2 +- .../altcadastral/TIdeEmpregadorCnpj.java | 2 +- .../altcadastral/TIdeEmpregadorExclusao.java | 2 +- .../altcadastral/TIdeEventoEvtTab.java | 2 +- .../altcadastral/TIdeEventoEvtTabInicial.java | 2 +- .../altcadastral/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/altcadastral/TIdeEventoFolha.java | 2 +- .../altcadastral/TIdeEventoFolhaMensal.java | 2 +- .../altcadastral/TIdeEventoFolhaMensalPF.java | 2 +- .../altcadastral/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../TIdeEventoRetornoContrib.java | 2 +- .../altcadastral/TIdeEventoRetornoMensal.java | 2 +- .../altcadastral/TIdeEventoRetornoTrab.java | 2 +- .../eventos/altcadastral/TIdeEventoTrab.java | 2 +- .../altcadastral/TIdeEventoTrabAdmissao.java | 2 +- .../altcadastral/TIdeEventoTrabIndGuia.java | 2 +- .../altcadastral/TIdeEventoTrabJud.java | 2 +- .../altcadastral/TIdeEventoTrabPJ.java | 2 +- .../altcadastral/TIdeTrabSemVinculo.java | 2 +- .../eventos/altcadastral/TIdeVinculo.java | 4 +- .../altcadastral/TIdeVinculoBaixa.java | 4 +- .../eventos/altcadastral/TIdeVinculoSst.java | 4 +- .../eventos/altcadastral/TInfoEstagiario.java | 2 +- .../eventos/altcadastral/TInfoInterm.java | 2 +- .../eventos/altcadastral/TInfoMV.java | 2 +- .../eventos/altcadastral/TInfoRRA.java | 2 +- .../eventos/altcadastral/TInfoSimples.java | 2 +- .../eventos/altcadastral/TItensRemunRpps.java | 2 +- .../eventos/altcadastral/TLocalTrabGeral.java | 2 +- .../eventos/altcadastral/TNascimento.java | 2 +- .../eventos/altcadastral/TNovaValidade.java | 2 +- .../eventos/altcadastral/TProcJudTrab.java | 2 +- .../eventos/altcadastral/TRemuneracao.java | 2 +- .../esquemas/eventos/altcadastral/TSSexo.java | 2 +- .../esquemas/eventos/altcadastral/TSSim.java | 2 +- .../eventos/altcadastral/TSSimNao.java | 2 +- .../eventos/altcadastral/TSTpAcConv.java | 11 +- .../eventos/altcadastral/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/altcadastral/TSUf.java | 2 +- .../eventos/altcadastral/TSucessaoVinc.java | 4 +- .../eventos/altcadastral/TTreiCap.java | 2 +- .../eventos/altcadastral/TransformType.java | 4 +- .../eventos/altcadastral/TransformsType.java | 2 +- .../eventos/altcadastral/X509DataType.java | 14 +- .../altcadastral/X509IssuerSerialType.java | 2 +- .../eventos/altcadastral/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../altcontratual/DSAKeyValueType.java | 2 +- .../altcontratual/DigestMethodType.java | 4 +- .../eventos/altcontratual/ESocial.java | 2 +- .../eventos/altcontratual/KeyInfoType.java | 20 +- .../eventos/altcontratual/KeyValueType.java | 6 +- .../eventos/altcontratual/ManifestType.java | 2 +- .../eventos/altcontratual/ObjectFactory.java | 42 +-- .../eventos/altcontratual/ObjectType.java | 4 +- .../eventos/altcontratual/PGPDataType.java | 10 +- .../altcontratual/RSAKeyValueType.java | 2 +- .../eventos/altcontratual/ReferenceType.java | 2 +- .../altcontratual/RetrievalMethodType.java | 2 +- .../eventos/altcontratual/SPKIDataType.java | 2 +- .../altcontratual/SignatureMethodType.java | 2 +- .../SignaturePropertiesType.java | 2 +- .../altcontratual/SignaturePropertyType.java | 4 +- .../eventos/altcontratual/SignatureType.java | 2 +- .../altcontratual/SignatureValueType.java | 2 +- .../eventos/altcontratual/SignedInfoType.java | 2 +- .../altcontratual/TAlvaraJudicial.java | 2 +- .../eventos/altcontratual/TAprend.java | 2 +- .../eventos/altcontratual/TContato.java | 2 +- .../eventos/altcontratual/TDetReemb.java | 2 +- .../eventos/altcontratual/TDetReembTot.java | 2 +- .../altcontratual/TEnderecoBrasil.java | 2 +- .../altcontratual/TEnderecoExterior.java | 2 +- .../eventos/altcontratual/THorContratual.java | 2 +- .../eventos/altcontratual/TIdeBeneficio.java | 2 +- .../eventos/altcontratual/TIdeEmpregador.java | 2 +- .../altcontratual/TIdeEmpregadorCnpj.java | 2 +- .../altcontratual/TIdeEmpregadorExclusao.java | 2 +- .../altcontratual/TIdeEventoEvtTab.java | 2 +- .../TIdeEventoEvtTabInicial.java | 2 +- .../altcontratual/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../altcontratual/TIdeEventoFolha.java | 2 +- .../altcontratual/TIdeEventoFolhaMensal.java | 2 +- .../TIdeEventoFolhaMensalPF.java | 2 +- .../altcontratual/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../TIdeEventoRetornoContrib.java | 2 +- .../TIdeEventoRetornoMensal.java | 2 +- .../altcontratual/TIdeEventoRetornoTrab.java | 2 +- .../eventos/altcontratual/TIdeEventoTrab.java | 2 +- .../altcontratual/TIdeEventoTrabAdmissao.java | 2 +- .../altcontratual/TIdeEventoTrabIndGuia.java | 2 +- .../altcontratual/TIdeEventoTrabJud.java | 2 +- .../altcontratual/TIdeEventoTrabPJ.java | 2 +- .../altcontratual/TIdeTrabSemVinculo.java | 2 +- .../eventos/altcontratual/TIdeVinculo.java | 4 +- .../altcontratual/TIdeVinculoBaixa.java | 4 +- .../eventos/altcontratual/TIdeVinculoSst.java | 4 +- .../altcontratual/TInfoEstagiario.java | 2 +- .../eventos/altcontratual/TInfoInterm.java | 2 +- .../eventos/altcontratual/TInfoMV.java | 2 +- .../eventos/altcontratual/TInfoRRA.java | 2 +- .../eventos/altcontratual/TInfoSimples.java | 2 +- .../altcontratual/TItensRemunRpps.java | 2 +- .../altcontratual/TLocalTrabGeral.java | 2 +- .../eventos/altcontratual/TNascimento.java | 2 +- .../eventos/altcontratual/TNovaValidade.java | 2 +- .../eventos/altcontratual/TProcJudTrab.java | 2 +- .../eventos/altcontratual/TRemuneracao.java | 2 +- .../eventos/altcontratual/TSSexo.java | 2 +- .../esquemas/eventos/altcontratual/TSSim.java | 2 +- .../eventos/altcontratual/TSSimNao.java | 2 +- .../eventos/altcontratual/TSTpAcConv.java | 11 +- .../eventos/altcontratual/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/altcontratual/TSUf.java | 2 +- .../eventos/altcontratual/TSucessaoVinc.java | 4 +- .../eventos/altcontratual/TTreiCap.java | 2 +- .../eventos/altcontratual/TransformType.java | 6 +- .../eventos/altcontratual/TransformsType.java | 2 +- .../eventos/altcontratual/X509DataType.java | 16 +- .../altcontratual/X509IssuerSerialType.java | 2 +- .../eventos/altcontratual/package-info.java | 2 +- .../anotjud/CanonicalizationMethodType.java | 2 +- .../eventos/anotjud/DSAKeyValueType.java | 2 +- .../eventos/anotjud/DigestMethodType.java | 4 +- .../esquemas/eventos/anotjud/ESocial.java | 256 +++++++++++++- .../esquemas/eventos/anotjud/KeyInfoType.java | 22 +- .../eventos/anotjud/KeyValueType.java | 6 +- .../eventos/anotjud/ManifestType.java | 2 +- .../eventos/anotjud/ObjectFactory.java | 26 +- .../esquemas/eventos/anotjud/ObjectType.java | 4 +- .../esquemas/eventos/anotjud/PGPDataType.java | 12 +- .../eventos/anotjud/RSAKeyValueType.java | 2 +- .../eventos/anotjud/ReferenceType.java | 2 +- .../eventos/anotjud/RetrievalMethodType.java | 2 +- .../eventos/anotjud/SPKIDataType.java | 4 +- .../eventos/anotjud/SignatureMethodType.java | 2 +- .../anotjud/SignaturePropertiesType.java | 2 +- .../anotjud/SignaturePropertyType.java | 4 +- .../eventos/anotjud/SignatureType.java | 2 +- .../eventos/anotjud/SignatureValueType.java | 2 +- .../eventos/anotjud/SignedInfoType.java | 2 +- .../eventos/anotjud/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/anotjud/TAprend.java | 2 +- .../esquemas/eventos/anotjud/TContato.java | 2 +- .../esquemas/eventos/anotjud/TDetReemb.java | 2 +- .../eventos/anotjud/TDetReembTot.java | 2 +- .../eventos/anotjud/TEnderecoBrasil.java | 2 +- .../eventos/anotjud/TEnderecoExterior.java | 2 +- .../eventos/anotjud/THorContratual.java | 2 +- .../eventos/anotjud/TIdeBeneficio.java | 2 +- .../eventos/anotjud/TIdeEmpregador.java | 2 +- .../eventos/anotjud/TIdeEmpregadorCnpj.java | 2 +- .../anotjud/TIdeEmpregadorExclusao.java | 2 +- .../eventos/anotjud/TIdeEventoEvtTab.java | 2 +- .../anotjud/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/anotjud/TIdeEventoExclusao.java | 2 +- .../anotjud/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/anotjud/TIdeEventoFolha.java | 2 +- .../anotjud/TIdeEventoFolhaMensal.java | 2 +- .../anotjud/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/anotjud/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../anotjud/TIdeEventoRetornoContrib.java | 2 +- .../anotjud/TIdeEventoRetornoMensal.java | 2 +- .../anotjud/TIdeEventoRetornoTrab.java | 2 +- .../eventos/anotjud/TIdeEventoTrab.java | 2 +- .../anotjud/TIdeEventoTrabAdmissao.java | 2 +- .../anotjud/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/anotjud/TIdeEventoTrabJud.java | 2 +- .../eventos/anotjud/TIdeEventoTrabPJ.java | 2 +- .../eventos/anotjud/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/anotjud/TIdeVinculo.java | 4 +- .../eventos/anotjud/TIdeVinculoBaixa.java | 4 +- .../eventos/anotjud/TIdeVinculoSst.java | 4 +- .../eventos/anotjud/TInfoEstagiario.java | 2 +- .../esquemas/eventos/anotjud/TInfoInterm.java | 2 +- .../esquemas/eventos/anotjud/TInfoMV.java | 2 +- .../esquemas/eventos/anotjud/TInfoRRA.java | 2 +- .../eventos/anotjud/TInfoSimples.java | 2 +- .../eventos/anotjud/TItensRemunRpps.java | 2 +- .../eventos/anotjud/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/anotjud/TNascimento.java | 2 +- .../eventos/anotjud/TNovaValidade.java | 2 +- .../eventos/anotjud/TProcJudTrab.java | 2 +- .../eventos/anotjud/TRemuneracao.java | 2 +- .../esquemas/eventos/anotjud/TSSexo.java | 2 +- .../esquemas/eventos/anotjud/TSSim.java | 2 +- .../esquemas/eventos/anotjud/TSSimNao.java | 2 +- .../esquemas/eventos/anotjud/TSTpAcConv.java | 11 +- .../eventos/anotjud/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/anotjud/TSUf.java | 2 +- .../eventos/anotjud/TSucessaoVinc.java | 4 +- .../esquemas/eventos/anotjud/TTreiCap.java | 2 +- .../eventos/anotjud/TransformType.java | 4 +- .../eventos/anotjud/TransformsType.java | 2 +- .../eventos/anotjud/X509DataType.java | 14 +- .../eventos/anotjud/X509IssuerSerialType.java | 2 +- .../eventos/anotjud/package-info.java | 2 +- .../baixa/CanonicalizationMethodType.java | 2 +- .../eventos/baixa/DSAKeyValueType.java | 2 +- .../eventos/baixa/DigestMethodType.java | 4 +- .../esquemas/eventos/baixa/ESocial.java | 2 +- .../esquemas/eventos/baixa/KeyInfoType.java | 20 +- .../esquemas/eventos/baixa/KeyValueType.java | 6 +- .../esquemas/eventos/baixa/ManifestType.java | 2 +- .../esquemas/eventos/baixa/ObjectFactory.java | 42 +-- .../esquemas/eventos/baixa/ObjectType.java | 4 +- .../esquemas/eventos/baixa/PGPDataType.java | 10 +- .../eventos/baixa/RSAKeyValueType.java | 2 +- .../esquemas/eventos/baixa/ReferenceType.java | 2 +- .../eventos/baixa/RetrievalMethodType.java | 2 +- .../esquemas/eventos/baixa/SPKIDataType.java | 2 +- .../eventos/baixa/SignatureMethodType.java | 2 +- .../baixa/SignaturePropertiesType.java | 2 +- .../eventos/baixa/SignaturePropertyType.java | 4 +- .../esquemas/eventos/baixa/SignatureType.java | 2 +- .../eventos/baixa/SignatureValueType.java | 2 +- .../eventos/baixa/SignedInfoType.java | 2 +- .../eventos/baixa/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/baixa/TAprend.java | 2 +- .../esquemas/eventos/baixa/TContato.java | 2 +- .../esquemas/eventos/baixa/TDetReemb.java | 2 +- .../esquemas/eventos/baixa/TDetReembTot.java | 2 +- .../eventos/baixa/TEnderecoBrasil.java | 2 +- .../eventos/baixa/TEnderecoExterior.java | 2 +- .../eventos/baixa/THorContratual.java | 2 +- .../esquemas/eventos/baixa/TIdeBeneficio.java | 2 +- .../eventos/baixa/TIdeEmpregador.java | 2 +- .../eventos/baixa/TIdeEmpregadorCnpj.java | 2 +- .../eventos/baixa/TIdeEmpregadorExclusao.java | 2 +- .../eventos/baixa/TIdeEventoEvtTab.java | 2 +- .../baixa/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/baixa/TIdeEventoExclusao.java | 2 +- .../baixa/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/baixa/TIdeEventoFolha.java | 2 +- .../eventos/baixa/TIdeEventoFolhaMensal.java | 2 +- .../baixa/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/baixa/TIdeEventoFolhaOpp.java | 2 +- .../baixa/TIdeEventoFolhaSemRetificacao.java | 2 +- .../baixa/TIdeEventoRetornoContrib.java | 2 +- .../baixa/TIdeEventoRetornoMensal.java | 2 +- .../eventos/baixa/TIdeEventoRetornoTrab.java | 2 +- .../eventos/baixa/TIdeEventoTrab.java | 2 +- .../eventos/baixa/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/baixa/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/baixa/TIdeEventoTrabJud.java | 2 +- .../eventos/baixa/TIdeEventoTrabPJ.java | 2 +- .../eventos/baixa/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/baixa/TIdeVinculo.java | 4 +- .../eventos/baixa/TIdeVinculoBaixa.java | 4 +- .../eventos/baixa/TIdeVinculoSst.java | 4 +- .../eventos/baixa/TInfoEstagiario.java | 2 +- .../esquemas/eventos/baixa/TInfoInterm.java | 2 +- .../esquemas/eventos/baixa/TInfoMV.java | 2 +- .../esquemas/eventos/baixa/TInfoRRA.java | 2 +- .../esquemas/eventos/baixa/TInfoSimples.java | 2 +- .../eventos/baixa/TItensRemunRpps.java | 2 +- .../eventos/baixa/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/baixa/TNascimento.java | 2 +- .../esquemas/eventos/baixa/TNovaValidade.java | 2 +- .../esquemas/eventos/baixa/TProcJudTrab.java | 2 +- .../esquemas/eventos/baixa/TRemuneracao.java | 2 +- .../esquemas/eventos/baixa/TSSexo.java | 2 +- .../esocial/esquemas/eventos/baixa/TSSim.java | 2 +- .../esquemas/eventos/baixa/TSSimNao.java | 2 +- .../esquemas/eventos/baixa/TSTpAcConv.java | 11 +- .../eventos/baixa/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/baixa/TSUf.java | 2 +- .../esquemas/eventos/baixa/TSucessaoVinc.java | 4 +- .../esquemas/eventos/baixa/TTreiCap.java | 2 +- .../esquemas/eventos/baixa/TransformType.java | 6 +- .../eventos/baixa/TransformsType.java | 2 +- .../esquemas/eventos/baixa/X509DataType.java | 16 +- .../eventos/baixa/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/baixa/package-info.java | 2 +- .../basesfgts/CanonicalizationMethodType.java | 4 +- .../eventos/basesfgts/DSAKeyValueType.java | 2 +- .../eventos/basesfgts/DigestMethodType.java | 4 +- .../esquemas/eventos/basesfgts/ESocial.java | 14 +- .../eventos/basesfgts/KeyInfoType.java | 22 +- .../eventos/basesfgts/KeyValueType.java | 12 +- .../eventos/basesfgts/ManifestType.java | 2 +- .../eventos/basesfgts/ObjectFactory.java | 72 ++-- .../eventos/basesfgts/ObjectType.java | 4 +- .../eventos/basesfgts/PGPDataType.java | 8 +- .../eventos/basesfgts/RSAKeyValueType.java | 2 +- .../eventos/basesfgts/ReferenceType.java | 2 +- .../basesfgts/RetrievalMethodType.java | 2 +- .../eventos/basesfgts/SPKIDataType.java | 4 +- .../basesfgts/SignatureMethodType.java | 4 +- .../basesfgts/SignaturePropertiesType.java | 2 +- .../basesfgts/SignaturePropertyType.java | 4 +- .../eventos/basesfgts/SignatureType.java | 2 +- .../eventos/basesfgts/SignatureValueType.java | 2 +- .../eventos/basesfgts/SignedInfoType.java | 2 +- .../eventos/basesfgts/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/basesfgts/TAprend.java | 2 +- .../esquemas/eventos/basesfgts/TContato.java | 2 +- .../esquemas/eventos/basesfgts/TDetReemb.java | 2 +- .../eventos/basesfgts/TDetReembTot.java | 2 +- .../eventos/basesfgts/TDetRubrSusp.java | 2 +- .../eventos/basesfgts/TEnderecoBrasil.java | 2 +- .../eventos/basesfgts/TEnderecoExterior.java | 2 +- .../eventos/basesfgts/THorContratual.java | 2 +- .../eventos/basesfgts/TIdeBeneficio.java | 2 +- .../eventos/basesfgts/TIdeEmpregador.java | 2 +- .../eventos/basesfgts/TIdeEmpregadorCnpj.java | 2 +- .../basesfgts/TIdeEmpregadorExclusao.java | 2 +- .../eventos/basesfgts/TIdeEventoEvtTab.java | 2 +- .../basesfgts/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/basesfgts/TIdeEventoExclusao.java | 2 +- .../basesfgts/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/basesfgts/TIdeEventoFolha.java | 2 +- .../basesfgts/TIdeEventoFolhaMensal.java | 2 +- .../basesfgts/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/basesfgts/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../basesfgts/TIdeEventoRetornoContrib.java | 2 +- .../basesfgts/TIdeEventoRetornoMensal.java | 2 +- .../basesfgts/TIdeEventoRetornoTrab.java | 2 +- .../eventos/basesfgts/TIdeEventoTrab.java | 2 +- .../basesfgts/TIdeEventoTrabAdmissao.java | 2 +- .../basesfgts/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/basesfgts/TIdeEventoTrabJud.java | 2 +- .../eventos/basesfgts/TIdeEventoTrabPJ.java | 2 +- .../eventos/basesfgts/TIdeTrabSemVinculo.java | 2 +- .../eventos/basesfgts/TIdeVinculo.java | 4 +- .../eventos/basesfgts/TIdeVinculoBaixa.java | 4 +- .../eventos/basesfgts/TIdeVinculoSst.java | 4 +- .../eventos/basesfgts/TInfoEstagiario.java | 2 +- .../eventos/basesfgts/TInfoInterm.java | 2 +- .../esquemas/eventos/basesfgts/TInfoMV.java | 2 +- .../esquemas/eventos/basesfgts/TInfoRRA.java | 2 +- .../eventos/basesfgts/TInfoSimples.java | 2 +- .../eventos/basesfgts/TItensRemunRpps.java | 2 +- .../eventos/basesfgts/TLocalTrabGeral.java | 2 +- .../eventos/basesfgts/TNascimento.java | 2 +- .../eventos/basesfgts/TNovaValidade.java | 2 +- .../eventos/basesfgts/TProcJudTrab.java | 2 +- .../eventos/basesfgts/TRemuneracao.java | 2 +- .../esquemas/eventos/basesfgts/TSSexo.java | 2 +- .../esquemas/eventos/basesfgts/TSSim.java | 2 +- .../esquemas/eventos/basesfgts/TSSimNao.java | 2 +- .../eventos/basesfgts/TSTpAcConv.java | 11 +- .../eventos/basesfgts/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/basesfgts/TSUf.java | 2 +- .../eventos/basesfgts/TSucessaoVinc.java | 4 +- .../esquemas/eventos/basesfgts/TTreiCap.java | 2 +- .../eventos/basesfgts/TransformType.java | 4 +- .../eventos/basesfgts/TransformsType.java | 2 +- .../eventos/basesfgts/X509DataType.java | 16 +- .../basesfgts/X509IssuerSerialType.java | 2 +- .../eventos/basesfgts/package-info.java | 2 +- .../basestrab/CanonicalizationMethodType.java | 2 +- .../eventos/basestrab/DSAKeyValueType.java | 2 +- .../eventos/basestrab/DigestMethodType.java | 4 +- .../esquemas/eventos/basestrab/ESocial.java | 12 +- .../eventos/basestrab/KeyInfoType.java | 20 +- .../eventos/basestrab/KeyValueType.java | 10 +- .../eventos/basestrab/ManifestType.java | 2 +- .../eventos/basestrab/ObjectFactory.java | 84 ++--- .../eventos/basestrab/ObjectType.java | 4 +- .../eventos/basestrab/PGPDataType.java | 14 +- .../eventos/basestrab/RSAKeyValueType.java | 2 +- .../eventos/basestrab/ReferenceType.java | 2 +- .../basestrab/RetrievalMethodType.java | 2 +- .../eventos/basestrab/SPKIDataType.java | 2 +- .../basestrab/SignatureMethodType.java | 4 +- .../basestrab/SignaturePropertiesType.java | 2 +- .../basestrab/SignaturePropertyType.java | 4 +- .../eventos/basestrab/SignatureType.java | 2 +- .../eventos/basestrab/SignatureValueType.java | 2 +- .../eventos/basestrab/SignedInfoType.java | 2 +- .../eventos/basestrab/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/basestrab/TAprend.java | 2 +- .../esquemas/eventos/basestrab/TContato.java | 2 +- .../esquemas/eventos/basestrab/TDetReemb.java | 2 +- .../eventos/basestrab/TDetReembTot.java | 2 +- .../eventos/basestrab/TEnderecoBrasil.java | 2 +- .../eventos/basestrab/TEnderecoExterior.java | 2 +- .../eventos/basestrab/THorContratual.java | 2 +- .../eventos/basestrab/TIdeBeneficio.java | 2 +- .../eventos/basestrab/TIdeEmpregador.java | 2 +- .../eventos/basestrab/TIdeEmpregadorCnpj.java | 2 +- .../basestrab/TIdeEmpregadorExclusao.java | 2 +- .../eventos/basestrab/TIdeEventoEvtTab.java | 2 +- .../basestrab/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/basestrab/TIdeEventoExclusao.java | 2 +- .../basestrab/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/basestrab/TIdeEventoFolha.java | 2 +- .../basestrab/TIdeEventoFolhaMensal.java | 2 +- .../basestrab/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/basestrab/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../basestrab/TIdeEventoRetornoContrib.java | 2 +- .../basestrab/TIdeEventoRetornoMensal.java | 2 +- .../basestrab/TIdeEventoRetornoTrab.java | 2 +- .../eventos/basestrab/TIdeEventoTrab.java | 2 +- .../basestrab/TIdeEventoTrabAdmissao.java | 2 +- .../basestrab/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/basestrab/TIdeEventoTrabJud.java | 2 +- .../eventos/basestrab/TIdeEventoTrabPJ.java | 2 +- .../eventos/basestrab/TIdeTrabSemVinculo.java | 2 +- .../eventos/basestrab/TIdeVinculo.java | 4 +- .../eventos/basestrab/TIdeVinculoBaixa.java | 4 +- .../eventos/basestrab/TIdeVinculoSst.java | 4 +- .../eventos/basestrab/TInfoEstagiario.java | 2 +- .../eventos/basestrab/TInfoInterm.java | 2 +- .../esquemas/eventos/basestrab/TInfoMV.java | 2 +- .../esquemas/eventos/basestrab/TInfoRRA.java | 2 +- .../eventos/basestrab/TInfoSimples.java | 2 +- .../eventos/basestrab/TItensRemunRpps.java | 2 +- .../eventos/basestrab/TLocalTrabGeral.java | 2 +- .../eventos/basestrab/TNascimento.java | 2 +- .../eventos/basestrab/TNovaValidade.java | 2 +- .../eventos/basestrab/TProcJudTrab.java | 2 +- .../eventos/basestrab/TRemuneracao.java | 2 +- .../esquemas/eventos/basestrab/TSSexo.java | 2 +- .../esquemas/eventos/basestrab/TSSim.java | 2 +- .../esquemas/eventos/basestrab/TSSimNao.java | 2 +- .../eventos/basestrab/TSTpAcConv.java | 11 +- .../eventos/basestrab/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/basestrab/TSUf.java | 2 +- .../eventos/basestrab/TSucessaoVinc.java | 4 +- .../esquemas/eventos/basestrab/TTreiCap.java | 2 +- .../eventos/basestrab/TransformType.java | 4 +- .../eventos/basestrab/TransformsType.java | 2 +- .../eventos/basestrab/X509DataType.java | 12 +- .../basestrab/X509IssuerSerialType.java | 2 +- .../eventos/basestrab/package-info.java | 2 +- .../benprrp/CanonicalizationMethodType.java | 2 +- .../eventos/benprrp/DSAKeyValueType.java | 2 +- .../eventos/benprrp/DigestMethodType.java | 4 +- .../esquemas/eventos/benprrp/ESocial.java | 2 +- .../esquemas/eventos/benprrp/KeyInfoType.java | 16 +- .../eventos/benprrp/KeyValueType.java | 6 +- .../eventos/benprrp/ManifestType.java | 2 +- .../eventos/benprrp/ObjectFactory.java | 42 +-- .../esquemas/eventos/benprrp/ObjectType.java | 4 +- .../esquemas/eventos/benprrp/PGPDataType.java | 14 +- .../eventos/benprrp/RSAKeyValueType.java | 2 +- .../eventos/benprrp/ReferenceType.java | 2 +- .../eventos/benprrp/RetrievalMethodType.java | 2 +- .../eventos/benprrp/SPKIDataType.java | 4 +- .../eventos/benprrp/SignatureMethodType.java | 4 +- .../benprrp/SignaturePropertiesType.java | 2 +- .../benprrp/SignaturePropertyType.java | 4 +- .../eventos/benprrp/SignatureType.java | 2 +- .../eventos/benprrp/SignatureValueType.java | 2 +- .../eventos/benprrp/SignedInfoType.java | 2 +- .../eventos/benprrp/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/benprrp/TAprend.java | 2 +- .../esquemas/eventos/benprrp/TContato.java | 2 +- .../esquemas/eventos/benprrp/TDetReemb.java | 2 +- .../eventos/benprrp/TDetReembTot.java | 2 +- .../eventos/benprrp/TEnderecoBrasil.java | 2 +- .../eventos/benprrp/TEnderecoExterior.java | 2 +- .../eventos/benprrp/THorContratual.java | 2 +- .../eventos/benprrp/TIdeBeneficio.java | 2 +- .../eventos/benprrp/TIdeEmpregador.java | 2 +- .../eventos/benprrp/TIdeEmpregadorCnpj.java | 2 +- .../benprrp/TIdeEmpregadorExclusao.java | 2 +- .../esquemas/eventos/benprrp/TIdeEstab.java | 2 +- .../eventos/benprrp/TIdeEventoEvtTab.java | 2 +- .../benprrp/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/benprrp/TIdeEventoExclusao.java | 2 +- .../benprrp/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/benprrp/TIdeEventoFolha.java | 2 +- .../benprrp/TIdeEventoFolhaMensal.java | 2 +- .../benprrp/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/benprrp/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../benprrp/TIdeEventoRetornoContrib.java | 2 +- .../benprrp/TIdeEventoRetornoMensal.java | 2 +- .../benprrp/TIdeEventoRetornoTrab.java | 2 +- .../eventos/benprrp/TIdeEventoTrab.java | 2 +- .../benprrp/TIdeEventoTrabAdmissao.java | 2 +- .../benprrp/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/benprrp/TIdeEventoTrabJud.java | 2 +- .../eventos/benprrp/TIdeEventoTrabPJ.java | 2 +- .../eventos/benprrp/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/benprrp/TIdeVinculo.java | 4 +- .../eventos/benprrp/TIdeVinculoBaixa.java | 4 +- .../eventos/benprrp/TIdeVinculoSst.java | 4 +- .../eventos/benprrp/TInfoEstagiario.java | 2 +- .../esquemas/eventos/benprrp/TInfoInterm.java | 2 +- .../esquemas/eventos/benprrp/TInfoMV.java | 2 +- .../esquemas/eventos/benprrp/TInfoRRA.java | 2 +- .../eventos/benprrp/TInfoSimples.java | 2 +- .../eventos/benprrp/TItensRemunRpps.java | 2 +- .../eventos/benprrp/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/benprrp/TNascimento.java | 2 +- .../eventos/benprrp/TNovaValidade.java | 2 +- .../eventos/benprrp/TProcJudTrab.java | 2 +- .../eventos/benprrp/TRemuneracao.java | 2 +- .../esquemas/eventos/benprrp/TSSexo.java | 2 +- .../esquemas/eventos/benprrp/TSSim.java | 2 +- .../esquemas/eventos/benprrp/TSSimNao.java | 2 +- .../esquemas/eventos/benprrp/TSTpAcConv.java | 11 +- .../eventos/benprrp/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/benprrp/TSUf.java | 2 +- .../eventos/benprrp/TSucessaoVinc.java | 4 +- .../esquemas/eventos/benprrp/TTreiCap.java | 2 +- .../eventos/benprrp/TransformType.java | 4 +- .../eventos/benprrp/TransformsType.java | 2 +- .../eventos/benprrp/X509DataType.java | 10 +- .../eventos/benprrp/X509IssuerSerialType.java | 2 +- .../eventos/benprrp/package-info.java | 2 +- .../cat/CanonicalizationMethodType.java | 4 +- .../esquemas/eventos/cat/DSAKeyValueType.java | 2 +- .../eventos/cat/DigestMethodType.java | 4 +- .../esocial/esquemas/eventos/cat/ESocial.java | 2 +- .../esquemas/eventos/cat/KeyInfoType.java | 26 +- .../esquemas/eventos/cat/KeyValueType.java | 8 +- .../esquemas/eventos/cat/ManifestType.java | 2 +- .../esquemas/eventos/cat/ObjectFactory.java | 60 ++-- .../esquemas/eventos/cat/ObjectType.java | 4 +- .../esquemas/eventos/cat/PGPDataType.java | 14 +- .../esquemas/eventos/cat/RSAKeyValueType.java | 2 +- .../esquemas/eventos/cat/ReferenceType.java | 2 +- .../eventos/cat/RetrievalMethodType.java | 2 +- .../esquemas/eventos/cat/SPKIDataType.java | 4 +- .../eventos/cat/SignatureMethodType.java | 4 +- .../eventos/cat/SignaturePropertiesType.java | 2 +- .../eventos/cat/SignaturePropertyType.java | 4 +- .../esquemas/eventos/cat/SignatureType.java | 2 +- .../eventos/cat/SignatureValueType.java | 2 +- .../esquemas/eventos/cat/SignedInfoType.java | 2 +- .../esquemas/eventos/cat/TAlvaraJudicial.java | 2 +- .../esocial/esquemas/eventos/cat/TAprend.java | 2 +- .../esquemas/eventos/cat/TContato.java | 2 +- .../esquemas/eventos/cat/TDetReemb.java | 2 +- .../esquemas/eventos/cat/TDetReembTot.java | 2 +- .../esquemas/eventos/cat/TEnderecoBrasil.java | 2 +- .../eventos/cat/TEnderecoExterior.java | 2 +- .../esquemas/eventos/cat/THorContratual.java | 2 +- .../esquemas/eventos/cat/TIdeBeneficio.java | 2 +- .../esquemas/eventos/cat/TIdeEmpregador.java | 2 +- .../eventos/cat/TIdeEmpregadorCnpj.java | 2 +- .../eventos/cat/TIdeEmpregadorExclusao.java | 2 +- .../eventos/cat/TIdeEventoEvtTab.java | 2 +- .../eventos/cat/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/cat/TIdeEventoExclusao.java | 2 +- .../cat/TIdeEventoExclusaoProcTrab.java | 2 +- .../esquemas/eventos/cat/TIdeEventoFolha.java | 2 +- .../eventos/cat/TIdeEventoFolhaMensal.java | 2 +- .../eventos/cat/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/cat/TIdeEventoFolhaOpp.java | 2 +- .../cat/TIdeEventoFolhaSemRetificacao.java | 2 +- .../eventos/cat/TIdeEventoRetornoContrib.java | 2 +- .../eventos/cat/TIdeEventoRetornoMensal.java | 2 +- .../eventos/cat/TIdeEventoRetornoTrab.java | 2 +- .../esquemas/eventos/cat/TIdeEventoTrab.java | 2 +- .../eventos/cat/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/cat/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cat/TIdeEventoTrabJud.java | 2 +- .../eventos/cat/TIdeEventoTrabPJ.java | 2 +- .../eventos/cat/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/cat/TIdeVinculo.java | 4 +- .../eventos/cat/TIdeVinculoBaixa.java | 4 +- .../esquemas/eventos/cat/TIdeVinculoSst.java | 4 +- .../esquemas/eventos/cat/TInfoEstagiario.java | 2 +- .../esquemas/eventos/cat/TInfoInterm.java | 2 +- .../esocial/esquemas/eventos/cat/TInfoMV.java | 2 +- .../esquemas/eventos/cat/TInfoRRA.java | 2 +- .../esquemas/eventos/cat/TInfoSimples.java | 2 +- .../esquemas/eventos/cat/TItensRemunRpps.java | 2 +- .../esquemas/eventos/cat/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/cat/TNascimento.java | 2 +- .../esquemas/eventos/cat/TNovaValidade.java | 2 +- .../esquemas/eventos/cat/TProcJudTrab.java | 2 +- .../esquemas/eventos/cat/TRemuneracao.java | 2 +- .../esocial/esquemas/eventos/cat/TSSexo.java | 2 +- .../esocial/esquemas/eventos/cat/TSSim.java | 2 +- .../esquemas/eventos/cat/TSSimNao.java | 2 +- .../esquemas/eventos/cat/TSTpAcConv.java | 11 +- .../esquemas/eventos/cat/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/cat/TSUf.java | 2 +- .../esquemas/eventos/cat/TSucessaoVinc.java | 4 +- .../esquemas/eventos/cat/TTreiCap.java | 2 +- .../esquemas/eventos/cat/TransformType.java | 6 +- .../esquemas/eventos/cat/TransformsType.java | 2 +- .../esquemas/eventos/cat/X509DataType.java | 14 +- .../eventos/cat/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/cat/package-info.java | 2 +- .../cdbenalt/CanonicalizationMethodType.java | 2 +- .../eventos/cdbenalt/DSAKeyValueType.java | 2 +- .../eventos/cdbenalt/DigestMethodType.java | 4 +- .../esquemas/eventos/cdbenalt/ESocial.java | 2 +- .../eventos/cdbenalt/KeyInfoType.java | 20 +- .../eventos/cdbenalt/KeyValueType.java | 10 +- .../eventos/cdbenalt/ManifestType.java | 2 +- .../eventos/cdbenalt/ObjectFactory.java | 84 ++--- .../esquemas/eventos/cdbenalt/ObjectType.java | 4 +- .../eventos/cdbenalt/PGPDataType.java | 14 +- .../eventos/cdbenalt/RSAKeyValueType.java | 2 +- .../eventos/cdbenalt/ReferenceType.java | 2 +- .../eventos/cdbenalt/RetrievalMethodType.java | 2 +- .../eventos/cdbenalt/SPKIDataType.java | 2 +- .../eventos/cdbenalt/SignatureMethodType.java | 4 +- .../cdbenalt/SignaturePropertiesType.java | 2 +- .../cdbenalt/SignaturePropertyType.java | 4 +- .../eventos/cdbenalt/SignatureType.java | 2 +- .../eventos/cdbenalt/SignatureValueType.java | 2 +- .../eventos/cdbenalt/SignedInfoType.java | 2 +- .../eventos/cdbenalt/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/cdbenalt/TAprend.java | 2 +- .../esquemas/eventos/cdbenalt/TContato.java | 2 +- .../esquemas/eventos/cdbenalt/TDetReemb.java | 2 +- .../eventos/cdbenalt/TDetReembTot.java | 2 +- .../eventos/cdbenalt/TEnderecoBrasil.java | 2 +- .../eventos/cdbenalt/TEnderecoExterior.java | 2 +- .../eventos/cdbenalt/THorContratual.java | 2 +- .../eventos/cdbenalt/TIdeBeneficio.java | 2 +- .../eventos/cdbenalt/TIdeEmpregador.java | 2 +- .../eventos/cdbenalt/TIdeEmpregadorCnpj.java | 2 +- .../cdbenalt/TIdeEmpregadorExclusao.java | 2 +- .../eventos/cdbenalt/TIdeEventoEvtTab.java | 2 +- .../cdbenalt/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/cdbenalt/TIdeEventoExclusao.java | 2 +- .../cdbenalt/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/cdbenalt/TIdeEventoFolha.java | 2 +- .../cdbenalt/TIdeEventoFolhaMensal.java | 2 +- .../cdbenalt/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/cdbenalt/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../cdbenalt/TIdeEventoRetornoContrib.java | 2 +- .../cdbenalt/TIdeEventoRetornoMensal.java | 2 +- .../cdbenalt/TIdeEventoRetornoTrab.java | 2 +- .../eventos/cdbenalt/TIdeEventoTrab.java | 2 +- .../cdbenalt/TIdeEventoTrabAdmissao.java | 2 +- .../cdbenalt/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cdbenalt/TIdeEventoTrabJud.java | 2 +- .../eventos/cdbenalt/TIdeEventoTrabPJ.java | 2 +- .../eventos/cdbenalt/TIdeTrabSemVinculo.java | 2 +- .../eventos/cdbenalt/TIdeVinculo.java | 4 +- .../eventos/cdbenalt/TIdeVinculoBaixa.java | 4 +- .../eventos/cdbenalt/TIdeVinculoSst.java | 4 +- .../eventos/cdbenalt/TInfoEstagiario.java | 2 +- .../eventos/cdbenalt/TInfoInterm.java | 2 +- .../esquemas/eventos/cdbenalt/TInfoMV.java | 2 +- .../esquemas/eventos/cdbenalt/TInfoRRA.java | 2 +- .../eventos/cdbenalt/TInfoSimples.java | 2 +- .../eventos/cdbenalt/TItensRemunRpps.java | 2 +- .../eventos/cdbenalt/TLocalTrabGeral.java | 2 +- .../eventos/cdbenalt/TNascimento.java | 2 +- .../eventos/cdbenalt/TNovaValidade.java | 2 +- .../eventos/cdbenalt/TProcJudTrab.java | 2 +- .../eventos/cdbenalt/TRemuneracao.java | 2 +- .../esquemas/eventos/cdbenalt/TSSexo.java | 2 +- .../esquemas/eventos/cdbenalt/TSSim.java | 2 +- .../esquemas/eventos/cdbenalt/TSSimNao.java | 2 +- .../esquemas/eventos/cdbenalt/TSTpAcConv.java | 11 +- .../eventos/cdbenalt/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/cdbenalt/TSUf.java | 2 +- .../eventos/cdbenalt/TSucessaoVinc.java | 4 +- .../esquemas/eventos/cdbenalt/TTreiCap.java | 2 +- .../eventos/cdbenalt/TransformType.java | 4 +- .../eventos/cdbenalt/TransformsType.java | 2 +- .../eventos/cdbenalt/X509DataType.java | 12 +- .../cdbenalt/X509IssuerSerialType.java | 2 +- .../eventos/cdbenalt/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/cdbenefalt/DSAKeyValueType.java | 2 +- .../eventos/cdbenefalt/DigestMethodType.java | 4 +- .../esquemas/eventos/cdbenefalt/ESocial.java | 2 +- .../eventos/cdbenefalt/KeyInfoType.java | 22 +- .../eventos/cdbenefalt/KeyValueType.java | 10 +- .../eventos/cdbenefalt/ManifestType.java | 2 +- .../eventos/cdbenefalt/ObjectFactory.java | 86 ++--- .../eventos/cdbenefalt/ObjectType.java | 4 +- .../eventos/cdbenefalt/PGPDataType.java | 10 +- .../eventos/cdbenefalt/RSAKeyValueType.java | 2 +- .../eventos/cdbenefalt/ReferenceType.java | 2 +- .../cdbenefalt/RetrievalMethodType.java | 2 +- .../eventos/cdbenefalt/SPKIDataType.java | 4 +- .../cdbenefalt/SignatureMethodType.java | 2 +- .../cdbenefalt/SignaturePropertiesType.java | 2 +- .../cdbenefalt/SignaturePropertyType.java | 4 +- .../eventos/cdbenefalt/SignatureType.java | 2 +- .../cdbenefalt/SignatureValueType.java | 2 +- .../eventos/cdbenefalt/SignedInfoType.java | 2 +- .../eventos/cdbenefalt/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/cdbenefalt/TAprend.java | 2 +- .../esquemas/eventos/cdbenefalt/TContato.java | 2 +- .../eventos/cdbenefalt/TDetReemb.java | 2 +- .../eventos/cdbenefalt/TDetReembTot.java | 2 +- .../eventos/cdbenefalt/TEnderecoBrasil.java | 2 +- .../eventos/cdbenefalt/TEnderecoExterior.java | 2 +- .../eventos/cdbenefalt/THorContratual.java | 2 +- .../eventos/cdbenefalt/TIdeBeneficio.java | 2 +- .../eventos/cdbenefalt/TIdeEmpregador.java | 2 +- .../cdbenefalt/TIdeEmpregadorCnpj.java | 2 +- .../cdbenefalt/TIdeEmpregadorExclusao.java | 2 +- .../eventos/cdbenefalt/TIdeEventoEvtTab.java | 2 +- .../cdbenefalt/TIdeEventoEvtTabInicial.java | 2 +- .../cdbenefalt/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/cdbenefalt/TIdeEventoFolha.java | 2 +- .../cdbenefalt/TIdeEventoFolhaMensal.java | 2 +- .../cdbenefalt/TIdeEventoFolhaMensalPF.java | 2 +- .../cdbenefalt/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../cdbenefalt/TIdeEventoRetornoContrib.java | 2 +- .../cdbenefalt/TIdeEventoRetornoMensal.java | 2 +- .../cdbenefalt/TIdeEventoRetornoTrab.java | 2 +- .../eventos/cdbenefalt/TIdeEventoTrab.java | 2 +- .../cdbenefalt/TIdeEventoTrabAdmissao.java | 2 +- .../cdbenefalt/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cdbenefalt/TIdeEventoTrabJud.java | 2 +- .../eventos/cdbenefalt/TIdeEventoTrabPJ.java | 2 +- .../cdbenefalt/TIdeTrabSemVinculo.java | 2 +- .../eventos/cdbenefalt/TIdeVinculo.java | 4 +- .../eventos/cdbenefalt/TIdeVinculoBaixa.java | 4 +- .../eventos/cdbenefalt/TIdeVinculoSst.java | 4 +- .../eventos/cdbenefalt/TInfoEstagiario.java | 2 +- .../eventos/cdbenefalt/TInfoInterm.java | 2 +- .../esquemas/eventos/cdbenefalt/TInfoMV.java | 2 +- .../esquemas/eventos/cdbenefalt/TInfoRRA.java | 2 +- .../eventos/cdbenefalt/TInfoSimples.java | 2 +- .../eventos/cdbenefalt/TItensRemunRpps.java | 2 +- .../eventos/cdbenefalt/TLocalTrabGeral.java | 2 +- .../eventos/cdbenefalt/TNascimento.java | 2 +- .../eventos/cdbenefalt/TNovaValidade.java | 2 +- .../eventos/cdbenefalt/TProcJudTrab.java | 2 +- .../eventos/cdbenefalt/TRemuneracao.java | 2 +- .../esquemas/eventos/cdbenefalt/TSSexo.java | 2 +- .../esquemas/eventos/cdbenefalt/TSSim.java | 2 +- .../esquemas/eventos/cdbenefalt/TSSimNao.java | 2 +- .../eventos/cdbenefalt/TSTpAcConv.java | 11 +- .../eventos/cdbenefalt/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/cdbenefalt/TSUf.java | 2 +- .../eventos/cdbenefalt/TSucessaoVinc.java | 4 +- .../esquemas/eventos/cdbenefalt/TTreiCap.java | 2 +- .../eventos/cdbenefalt/TransformType.java | 4 +- .../eventos/cdbenefalt/TransformsType.java | 2 +- .../eventos/cdbenefalt/X509DataType.java | 18 +- .../cdbenefalt/X509IssuerSerialType.java | 2 +- .../eventos/cdbenefalt/package-info.java | 2 +- .../cdbenefin/CanonicalizationMethodType.java | 2 +- .../eventos/cdbenefin/DSAKeyValueType.java | 2 +- .../eventos/cdbenefin/DigestMethodType.java | 4 +- .../esquemas/eventos/cdbenefin/ESocial.java | 2 +- .../eventos/cdbenefin/KeyInfoType.java | 20 +- .../eventos/cdbenefin/KeyValueType.java | 6 +- .../eventos/cdbenefin/ManifestType.java | 2 +- .../eventos/cdbenefin/ObjectFactory.java | 42 +-- .../eventos/cdbenefin/ObjectType.java | 4 +- .../eventos/cdbenefin/PGPDataType.java | 10 +- .../eventos/cdbenefin/RSAKeyValueType.java | 2 +- .../eventos/cdbenefin/ReferenceType.java | 2 +- .../cdbenefin/RetrievalMethodType.java | 2 +- .../eventos/cdbenefin/SPKIDataType.java | 2 +- .../cdbenefin/SignatureMethodType.java | 2 +- .../cdbenefin/SignaturePropertiesType.java | 2 +- .../cdbenefin/SignaturePropertyType.java | 4 +- .../eventos/cdbenefin/SignatureType.java | 2 +- .../eventos/cdbenefin/SignatureValueType.java | 2 +- .../eventos/cdbenefin/SignedInfoType.java | 2 +- .../eventos/cdbenefin/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/cdbenefin/TAprend.java | 2 +- .../esquemas/eventos/cdbenefin/TContato.java | 2 +- .../esquemas/eventos/cdbenefin/TDetReemb.java | 2 +- .../eventos/cdbenefin/TDetReembTot.java | 2 +- .../eventos/cdbenefin/TEnderecoBrasil.java | 2 +- .../eventos/cdbenefin/TEnderecoExterior.java | 2 +- .../eventos/cdbenefin/THorContratual.java | 2 +- .../eventos/cdbenefin/TIdeBeneficio.java | 2 +- .../eventos/cdbenefin/TIdeEmpregador.java | 2 +- .../eventos/cdbenefin/TIdeEmpregadorCnpj.java | 2 +- .../cdbenefin/TIdeEmpregadorExclusao.java | 2 +- .../eventos/cdbenefin/TIdeEventoEvtTab.java | 2 +- .../cdbenefin/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/cdbenefin/TIdeEventoExclusao.java | 2 +- .../cdbenefin/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/cdbenefin/TIdeEventoFolha.java | 2 +- .../cdbenefin/TIdeEventoFolhaMensal.java | 2 +- .../cdbenefin/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/cdbenefin/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../cdbenefin/TIdeEventoRetornoContrib.java | 2 +- .../cdbenefin/TIdeEventoRetornoMensal.java | 2 +- .../cdbenefin/TIdeEventoRetornoTrab.java | 2 +- .../eventos/cdbenefin/TIdeEventoTrab.java | 2 +- .../cdbenefin/TIdeEventoTrabAdmissao.java | 2 +- .../cdbenefin/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cdbenefin/TIdeEventoTrabJud.java | 2 +- .../eventos/cdbenefin/TIdeEventoTrabPJ.java | 2 +- .../eventos/cdbenefin/TIdeTrabSemVinculo.java | 2 +- .../eventos/cdbenefin/TIdeVinculo.java | 4 +- .../eventos/cdbenefin/TIdeVinculoBaixa.java | 4 +- .../eventos/cdbenefin/TIdeVinculoSst.java | 4 +- .../eventos/cdbenefin/TInfoEstagiario.java | 2 +- .../eventos/cdbenefin/TInfoInterm.java | 2 +- .../esquemas/eventos/cdbenefin/TInfoMV.java | 2 +- .../esquemas/eventos/cdbenefin/TInfoRRA.java | 2 +- .../eventos/cdbenefin/TInfoSimples.java | 2 +- .../eventos/cdbenefin/TItensRemunRpps.java | 2 +- .../eventos/cdbenefin/TLocalTrabGeral.java | 2 +- .../eventos/cdbenefin/TNascimento.java | 2 +- .../eventos/cdbenefin/TNovaValidade.java | 2 +- .../eventos/cdbenefin/TProcJudTrab.java | 2 +- .../eventos/cdbenefin/TRemuneracao.java | 2 +- .../esquemas/eventos/cdbenefin/TSSexo.java | 2 +- .../esquemas/eventos/cdbenefin/TSSim.java | 2 +- .../esquemas/eventos/cdbenefin/TSSimNao.java | 2 +- .../eventos/cdbenefin/TSTpAcConv.java | 11 +- .../eventos/cdbenefin/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/cdbenefin/TSUf.java | 2 +- .../eventos/cdbenefin/TSucessaoVinc.java | 4 +- .../esquemas/eventos/cdbenefin/TTreiCap.java | 2 +- .../eventos/cdbenefin/TransformType.java | 6 +- .../eventos/cdbenefin/TransformsType.java | 2 +- .../eventos/cdbenefin/X509DataType.java | 16 +- .../cdbenefin/X509IssuerSerialType.java | 2 +- .../eventos/cdbenefin/package-info.java | 2 +- .../cdbenin/CanonicalizationMethodType.java | 2 +- .../eventos/cdbenin/DSAKeyValueType.java | 2 +- .../eventos/cdbenin/DigestMethodType.java | 4 +- .../esquemas/eventos/cdbenin/ESocial.java | 2 +- .../esquemas/eventos/cdbenin/KeyInfoType.java | 22 +- .../eventos/cdbenin/KeyValueType.java | 10 +- .../eventos/cdbenin/ManifestType.java | 2 +- .../eventos/cdbenin/ObjectFactory.java | 86 ++--- .../esquemas/eventos/cdbenin/ObjectType.java | 4 +- .../esquemas/eventos/cdbenin/PGPDataType.java | 10 +- .../eventos/cdbenin/RSAKeyValueType.java | 2 +- .../eventos/cdbenin/ReferenceType.java | 2 +- .../eventos/cdbenin/RetrievalMethodType.java | 2 +- .../eventos/cdbenin/SPKIDataType.java | 4 +- .../eventos/cdbenin/SignatureMethodType.java | 2 +- .../cdbenin/SignaturePropertiesType.java | 2 +- .../cdbenin/SignaturePropertyType.java | 4 +- .../eventos/cdbenin/SignatureType.java | 2 +- .../eventos/cdbenin/SignatureValueType.java | 2 +- .../eventos/cdbenin/SignedInfoType.java | 2 +- .../eventos/cdbenin/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/cdbenin/TAprend.java | 2 +- .../esquemas/eventos/cdbenin/TContato.java | 2 +- .../esquemas/eventos/cdbenin/TDetReemb.java | 2 +- .../eventos/cdbenin/TDetReembTot.java | 2 +- .../eventos/cdbenin/TEnderecoBrasil.java | 2 +- .../eventos/cdbenin/TEnderecoExterior.java | 2 +- .../eventos/cdbenin/THorContratual.java | 2 +- .../eventos/cdbenin/TIdeBeneficio.java | 2 +- .../eventos/cdbenin/TIdeEmpregador.java | 2 +- .../eventos/cdbenin/TIdeEmpregadorCnpj.java | 2 +- .../cdbenin/TIdeEmpregadorExclusao.java | 2 +- .../eventos/cdbenin/TIdeEventoEvtTab.java | 2 +- .../cdbenin/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/cdbenin/TIdeEventoExclusao.java | 2 +- .../cdbenin/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/cdbenin/TIdeEventoFolha.java | 2 +- .../cdbenin/TIdeEventoFolhaMensal.java | 2 +- .../cdbenin/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/cdbenin/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../cdbenin/TIdeEventoRetornoContrib.java | 2 +- .../cdbenin/TIdeEventoRetornoMensal.java | 2 +- .../cdbenin/TIdeEventoRetornoTrab.java | 2 +- .../eventos/cdbenin/TIdeEventoTrab.java | 2 +- .../cdbenin/TIdeEventoTrabAdmissao.java | 2 +- .../cdbenin/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cdbenin/TIdeEventoTrabJud.java | 2 +- .../eventos/cdbenin/TIdeEventoTrabPJ.java | 2 +- .../eventos/cdbenin/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/cdbenin/TIdeVinculo.java | 4 +- .../eventos/cdbenin/TIdeVinculoBaixa.java | 4 +- .../eventos/cdbenin/TIdeVinculoSst.java | 4 +- .../eventos/cdbenin/TInfoEstagiario.java | 2 +- .../esquemas/eventos/cdbenin/TInfoInterm.java | 2 +- .../esquemas/eventos/cdbenin/TInfoMV.java | 2 +- .../esquemas/eventos/cdbenin/TInfoRRA.java | 2 +- .../eventos/cdbenin/TInfoSimples.java | 2 +- .../eventos/cdbenin/TItensRemunRpps.java | 2 +- .../eventos/cdbenin/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/cdbenin/TNascimento.java | 2 +- .../eventos/cdbenin/TNovaValidade.java | 2 +- .../eventos/cdbenin/TProcJudTrab.java | 2 +- .../eventos/cdbenin/TRemuneracao.java | 2 +- .../esquemas/eventos/cdbenin/TSSexo.java | 2 +- .../esquemas/eventos/cdbenin/TSSim.java | 2 +- .../esquemas/eventos/cdbenin/TSSimNao.java | 2 +- .../esquemas/eventos/cdbenin/TSTpAcConv.java | 11 +- .../eventos/cdbenin/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/cdbenin/TSUf.java | 2 +- .../eventos/cdbenin/TSucessaoVinc.java | 4 +- .../esquemas/eventos/cdbenin/TTreiCap.java | 2 +- .../eventos/cdbenin/TransformType.java | 4 +- .../eventos/cdbenin/TransformsType.java | 2 +- .../eventos/cdbenin/X509DataType.java | 18 +- .../eventos/cdbenin/X509IssuerSerialType.java | 2 +- .../eventos/cdbenin/package-info.java | 2 +- .../cdbenterm/CanonicalizationMethodType.java | 2 +- .../eventos/cdbenterm/DSAKeyValueType.java | 2 +- .../eventos/cdbenterm/DigestMethodType.java | 4 +- .../esquemas/eventos/cdbenterm/ESocial.java | 2 +- .../eventos/cdbenterm/KeyInfoType.java | 24 +- .../eventos/cdbenterm/KeyValueType.java | 6 +- .../eventos/cdbenterm/ManifestType.java | 2 +- .../eventos/cdbenterm/ObjectFactory.java | 70 ++-- .../eventos/cdbenterm/ObjectType.java | 4 +- .../eventos/cdbenterm/PGPDataType.java | 10 +- .../eventos/cdbenterm/RSAKeyValueType.java | 2 +- .../eventos/cdbenterm/ReferenceType.java | 2 +- .../cdbenterm/RetrievalMethodType.java | 2 +- .../eventos/cdbenterm/SPKIDataType.java | 2 +- .../cdbenterm/SignatureMethodType.java | 4 +- .../cdbenterm/SignaturePropertiesType.java | 2 +- .../cdbenterm/SignaturePropertyType.java | 4 +- .../eventos/cdbenterm/SignatureType.java | 2 +- .../eventos/cdbenterm/SignatureValueType.java | 2 +- .../eventos/cdbenterm/SignedInfoType.java | 2 +- .../eventos/cdbenterm/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/cdbenterm/TAprend.java | 2 +- .../esquemas/eventos/cdbenterm/TContato.java | 2 +- .../esquemas/eventos/cdbenterm/TDetReemb.java | 2 +- .../eventos/cdbenterm/TDetReembTot.java | 2 +- .../eventos/cdbenterm/TEnderecoBrasil.java | 2 +- .../eventos/cdbenterm/TEnderecoExterior.java | 2 +- .../eventos/cdbenterm/THorContratual.java | 2 +- .../eventos/cdbenterm/TIdeBeneficio.java | 2 +- .../eventos/cdbenterm/TIdeEmpregador.java | 2 +- .../eventos/cdbenterm/TIdeEmpregadorCnpj.java | 2 +- .../cdbenterm/TIdeEmpregadorExclusao.java | 2 +- .../eventos/cdbenterm/TIdeEventoEvtTab.java | 2 +- .../cdbenterm/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/cdbenterm/TIdeEventoExclusao.java | 2 +- .../cdbenterm/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/cdbenterm/TIdeEventoFolha.java | 2 +- .../cdbenterm/TIdeEventoFolhaMensal.java | 2 +- .../cdbenterm/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/cdbenterm/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../cdbenterm/TIdeEventoRetornoContrib.java | 2 +- .../cdbenterm/TIdeEventoRetornoMensal.java | 2 +- .../cdbenterm/TIdeEventoRetornoTrab.java | 2 +- .../eventos/cdbenterm/TIdeEventoTrab.java | 2 +- .../cdbenterm/TIdeEventoTrabAdmissao.java | 2 +- .../cdbenterm/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cdbenterm/TIdeEventoTrabJud.java | 2 +- .../eventos/cdbenterm/TIdeEventoTrabPJ.java | 2 +- .../eventos/cdbenterm/TIdeTrabSemVinculo.java | 2 +- .../eventos/cdbenterm/TIdeVinculo.java | 4 +- .../eventos/cdbenterm/TIdeVinculoBaixa.java | 4 +- .../eventos/cdbenterm/TIdeVinculoSst.java | 4 +- .../eventos/cdbenterm/TInfoEstagiario.java | 2 +- .../eventos/cdbenterm/TInfoInterm.java | 2 +- .../esquemas/eventos/cdbenterm/TInfoMV.java | 2 +- .../esquemas/eventos/cdbenterm/TInfoRRA.java | 2 +- .../eventos/cdbenterm/TInfoSimples.java | 2 +- .../eventos/cdbenterm/TItensRemunRpps.java | 2 +- .../eventos/cdbenterm/TLocalTrabGeral.java | 2 +- .../eventos/cdbenterm/TNascimento.java | 2 +- .../eventos/cdbenterm/TNovaValidade.java | 2 +- .../eventos/cdbenterm/TProcJudTrab.java | 2 +- .../eventos/cdbenterm/TRemuneracao.java | 2 +- .../esquemas/eventos/cdbenterm/TSSexo.java | 2 +- .../esquemas/eventos/cdbenterm/TSSim.java | 2 +- .../esquemas/eventos/cdbenterm/TSSimNao.java | 2 +- .../eventos/cdbenterm/TSTpAcConv.java | 11 +- .../eventos/cdbenterm/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/cdbenterm/TSUf.java | 2 +- .../eventos/cdbenterm/TSucessaoVinc.java | 4 +- .../esquemas/eventos/cdbenterm/TTreiCap.java | 2 +- .../eventos/cdbenterm/TransformType.java | 4 +- .../eventos/cdbenterm/TransformsType.java | 2 +- .../eventos/cdbenterm/X509DataType.java | 16 +- .../cdbenterm/X509IssuerSerialType.java | 2 +- .../eventos/cdbenterm/package-info.java | 2 +- .../cessao/CanonicalizationMethodType.java | 2 +- .../eventos/cessao/DSAKeyValueType.java | 2 +- .../eventos/cessao/DigestMethodType.java | 4 +- .../esquemas/eventos/cessao/ESocial.java | 2 +- .../esquemas/eventos/cessao/KeyInfoType.java | 20 +- .../esquemas/eventos/cessao/KeyValueType.java | 6 +- .../esquemas/eventos/cessao/ManifestType.java | 2 +- .../eventos/cessao/ObjectFactory.java | 40 +-- .../esquemas/eventos/cessao/ObjectType.java | 4 +- .../esquemas/eventos/cessao/PGPDataType.java | 8 +- .../eventos/cessao/RSAKeyValueType.java | 2 +- .../eventos/cessao/ReferenceType.java | 2 +- .../eventos/cessao/RetrievalMethodType.java | 2 +- .../esquemas/eventos/cessao/SPKIDataType.java | 6 +- .../eventos/cessao/SignatureMethodType.java | 4 +- .../cessao/SignaturePropertiesType.java | 2 +- .../eventos/cessao/SignaturePropertyType.java | 4 +- .../eventos/cessao/SignatureType.java | 2 +- .../eventos/cessao/SignatureValueType.java | 2 +- .../eventos/cessao/SignedInfoType.java | 2 +- .../eventos/cessao/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/cessao/TAprend.java | 2 +- .../esquemas/eventos/cessao/TContato.java | 2 +- .../esquemas/eventos/cessao/TDetReemb.java | 2 +- .../esquemas/eventos/cessao/TDetReembTot.java | 2 +- .../eventos/cessao/TEnderecoBrasil.java | 2 +- .../eventos/cessao/TEnderecoExterior.java | 2 +- .../eventos/cessao/THorContratual.java | 2 +- .../eventos/cessao/TIdeBeneficio.java | 2 +- .../eventos/cessao/TIdeEmpregador.java | 2 +- .../eventos/cessao/TIdeEmpregadorCnpj.java | 2 +- .../cessao/TIdeEmpregadorExclusao.java | 2 +- .../eventos/cessao/TIdeEventoEvtTab.java | 2 +- .../cessao/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/cessao/TIdeEventoExclusao.java | 2 +- .../cessao/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/cessao/TIdeEventoFolha.java | 2 +- .../eventos/cessao/TIdeEventoFolhaMensal.java | 2 +- .../cessao/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/cessao/TIdeEventoFolhaOpp.java | 2 +- .../cessao/TIdeEventoFolhaSemRetificacao.java | 2 +- .../cessao/TIdeEventoRetornoContrib.java | 2 +- .../cessao/TIdeEventoRetornoMensal.java | 2 +- .../eventos/cessao/TIdeEventoRetornoTrab.java | 2 +- .../eventos/cessao/TIdeEventoTrab.java | 2 +- .../cessao/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/cessao/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cessao/TIdeEventoTrabJud.java | 2 +- .../eventos/cessao/TIdeEventoTrabPJ.java | 2 +- .../eventos/cessao/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/cessao/TIdeVinculo.java | 4 +- .../eventos/cessao/TIdeVinculoBaixa.java | 4 +- .../eventos/cessao/TIdeVinculoSst.java | 4 +- .../eventos/cessao/TInfoEstagiario.java | 2 +- .../esquemas/eventos/cessao/TInfoInterm.java | 2 +- .../esquemas/eventos/cessao/TInfoMV.java | 2 +- .../esquemas/eventos/cessao/TInfoRRA.java | 2 +- .../esquemas/eventos/cessao/TInfoSimples.java | 2 +- .../eventos/cessao/TItensRemunRpps.java | 2 +- .../eventos/cessao/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/cessao/TNascimento.java | 2 +- .../eventos/cessao/TNovaValidade.java | 2 +- .../esquemas/eventos/cessao/TProcJudTrab.java | 2 +- .../esquemas/eventos/cessao/TRemuneracao.java | 2 +- .../esquemas/eventos/cessao/TSSexo.java | 2 +- .../esquemas/eventos/cessao/TSSim.java | 2 +- .../esquemas/eventos/cessao/TSSimNao.java | 2 +- .../esquemas/eventos/cessao/TSTpAcConv.java | 11 +- .../eventos/cessao/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/cessao/TSUf.java | 2 +- .../eventos/cessao/TSucessaoVinc.java | 4 +- .../esquemas/eventos/cessao/TTreiCap.java | 2 +- .../eventos/cessao/TransformType.java | 4 +- .../eventos/cessao/TransformsType.java | 2 +- .../esquemas/eventos/cessao/X509DataType.java | 10 +- .../eventos/cessao/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/cessao/package-info.java | 2 +- .../comprod/CanonicalizationMethodType.java | 2 +- .../eventos/comprod/DSAKeyValueType.java | 2 +- .../eventos/comprod/DigestMethodType.java | 4 +- .../esquemas/eventos/comprod/ESocial.java | 2 +- .../esquemas/eventos/comprod/KeyInfoType.java | 22 +- .../eventos/comprod/KeyValueType.java | 6 +- .../eventos/comprod/ManifestType.java | 2 +- .../eventos/comprod/ObjectFactory.java | 2 +- .../esquemas/eventos/comprod/ObjectType.java | 4 +- .../esquemas/eventos/comprod/PGPDataType.java | 12 +- .../eventos/comprod/RSAKeyValueType.java | 2 +- .../eventos/comprod/ReferenceType.java | 2 +- .../eventos/comprod/RetrievalMethodType.java | 2 +- .../eventos/comprod/SPKIDataType.java | 4 +- .../eventos/comprod/SignatureMethodType.java | 2 +- .../comprod/SignaturePropertiesType.java | 2 +- .../comprod/SignaturePropertyType.java | 4 +- .../eventos/comprod/SignatureType.java | 2 +- .../eventos/comprod/SignatureValueType.java | 2 +- .../eventos/comprod/SignedInfoType.java | 2 +- .../eventos/comprod/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/comprod/TAprend.java | 2 +- .../esquemas/eventos/comprod/TContato.java | 2 +- .../esquemas/eventos/comprod/TDetReemb.java | 2 +- .../eventos/comprod/TDetReembTot.java | 2 +- .../eventos/comprod/TEnderecoBrasil.java | 2 +- .../eventos/comprod/TEnderecoExterior.java | 2 +- .../eventos/comprod/THorContratual.java | 2 +- .../eventos/comprod/TIdeBeneficio.java | 2 +- .../eventos/comprod/TIdeEmpregador.java | 2 +- .../eventos/comprod/TIdeEmpregadorCnpj.java | 2 +- .../comprod/TIdeEmpregadorExclusao.java | 2 +- .../eventos/comprod/TIdeEventoEvtTab.java | 2 +- .../comprod/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/comprod/TIdeEventoExclusao.java | 2 +- .../comprod/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/comprod/TIdeEventoFolha.java | 2 +- .../comprod/TIdeEventoFolhaMensal.java | 2 +- .../comprod/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/comprod/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../comprod/TIdeEventoRetornoContrib.java | 2 +- .../comprod/TIdeEventoRetornoMensal.java | 2 +- .../comprod/TIdeEventoRetornoTrab.java | 2 +- .../eventos/comprod/TIdeEventoTrab.java | 2 +- .../comprod/TIdeEventoTrabAdmissao.java | 2 +- .../comprod/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/comprod/TIdeEventoTrabJud.java | 2 +- .../eventos/comprod/TIdeEventoTrabPJ.java | 2 +- .../eventos/comprod/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/comprod/TIdeVinculo.java | 4 +- .../eventos/comprod/TIdeVinculoBaixa.java | 4 +- .../eventos/comprod/TIdeVinculoSst.java | 4 +- .../eventos/comprod/TInfoEstagiario.java | 2 +- .../esquemas/eventos/comprod/TInfoInterm.java | 2 +- .../esquemas/eventos/comprod/TInfoMV.java | 2 +- .../esquemas/eventos/comprod/TInfoRRA.java | 2 +- .../eventos/comprod/TInfoSimples.java | 2 +- .../eventos/comprod/TItensRemunRpps.java | 2 +- .../eventos/comprod/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/comprod/TNascimento.java | 2 +- .../eventos/comprod/TNovaValidade.java | 2 +- .../eventos/comprod/TProcJudTrab.java | 2 +- .../eventos/comprod/TRemuneracao.java | 2 +- .../esquemas/eventos/comprod/TSSexo.java | 2 +- .../esquemas/eventos/comprod/TSSim.java | 2 +- .../esquemas/eventos/comprod/TSSimNao.java | 2 +- .../esquemas/eventos/comprod/TSTpAcConv.java | 11 +- .../eventos/comprod/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/comprod/TSUf.java | 2 +- .../eventos/comprod/TSucessaoVinc.java | 4 +- .../esquemas/eventos/comprod/TTreiCap.java | 2 +- .../eventos/comprod/TransformType.java | 4 +- .../eventos/comprod/TransformsType.java | 2 +- .../eventos/comprod/X509DataType.java | 14 +- .../eventos/comprod/X509IssuerSerialType.java | 2 +- .../eventos/comprod/package-info.java | 2 +- .../contproc/CanonicalizationMethodType.java | 2 +- .../eventos/contproc/DSAKeyValueType.java | 2 +- .../eventos/contproc/DigestMethodType.java | 4 +- .../esquemas/eventos/contproc/ESocial.java | 6 +- .../eventos/contproc/KeyInfoType.java | 22 +- .../eventos/contproc/KeyValueType.java | 8 +- .../eventos/contproc/ManifestType.java | 2 +- .../eventos/contproc/ObjectFactory.java | 72 ++-- .../esquemas/eventos/contproc/ObjectType.java | 4 +- .../eventos/contproc/PGPDataType.java | 10 +- .../eventos/contproc/RSAKeyValueType.java | 2 +- .../eventos/contproc/ReferenceType.java | 2 +- .../eventos/contproc/RetrievalMethodType.java | 2 +- .../eventos/contproc/SPKIDataType.java | 6 +- .../eventos/contproc/SignatureMethodType.java | 2 +- .../contproc/SignaturePropertiesType.java | 2 +- .../contproc/SignaturePropertyType.java | 4 +- .../eventos/contproc/SignatureType.java | 2 +- .../eventos/contproc/SignatureValueType.java | 2 +- .../eventos/contproc/SignedInfoType.java | 2 +- .../eventos/contproc/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/contproc/TAprend.java | 2 +- .../esquemas/eventos/contproc/TContato.java | 2 +- .../esquemas/eventos/contproc/TDetReemb.java | 2 +- .../eventos/contproc/TDetReembTot.java | 2 +- .../eventos/contproc/TEnderecoBrasil.java | 2 +- .../eventos/contproc/TEnderecoExterior.java | 2 +- .../eventos/contproc/THorContratual.java | 2 +- .../eventos/contproc/TIdeBeneficio.java | 2 +- .../eventos/contproc/TIdeEmpregador.java | 2 +- .../eventos/contproc/TIdeEmpregadorCnpj.java | 2 +- .../contproc/TIdeEmpregadorExclusao.java | 2 +- .../eventos/contproc/TIdeEventoEvtTab.java | 2 +- .../contproc/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/contproc/TIdeEventoExclusao.java | 2 +- .../contproc/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/contproc/TIdeEventoFolha.java | 2 +- .../contproc/TIdeEventoFolhaMensal.java | 2 +- .../contproc/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/contproc/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../contproc/TIdeEventoRetornoContrib.java | 2 +- .../contproc/TIdeEventoRetornoMensal.java | 2 +- .../contproc/TIdeEventoRetornoTrab.java | 2 +- .../eventos/contproc/TIdeEventoTrab.java | 2 +- .../contproc/TIdeEventoTrabAdmissao.java | 2 +- .../contproc/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/contproc/TIdeEventoTrabJud.java | 2 +- .../eventos/contproc/TIdeEventoTrabPJ.java | 2 +- .../eventos/contproc/TIdeTrabSemVinculo.java | 2 +- .../eventos/contproc/TIdeVinculo.java | 4 +- .../eventos/contproc/TIdeVinculoBaixa.java | 4 +- .../eventos/contproc/TIdeVinculoSst.java | 4 +- .../eventos/contproc/TInfoEstagiario.java | 2 +- .../eventos/contproc/TInfoInterm.java | 2 +- .../esquemas/eventos/contproc/TInfoMV.java | 2 +- .../esquemas/eventos/contproc/TInfoRRA.java | 2 +- .../eventos/contproc/TInfoSimples.java | 2 +- .../eventos/contproc/TItensRemunRpps.java | 2 +- .../eventos/contproc/TLocalTrabGeral.java | 2 +- .../eventos/contproc/TNascimento.java | 2 +- .../eventos/contproc/TNovaValidade.java | 2 +- .../eventos/contproc/TProcJudTrab.java | 2 +- .../eventos/contproc/TRemuneracao.java | 2 +- .../esquemas/eventos/contproc/TSSexo.java | 2 +- .../esquemas/eventos/contproc/TSSim.java | 2 +- .../esquemas/eventos/contproc/TSSimNao.java | 2 +- .../esquemas/eventos/contproc/TSTpAcConv.java | 11 +- .../eventos/contproc/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/contproc/TSUf.java | 2 +- .../eventos/contproc/TSucessaoVinc.java | 4 +- .../esquemas/eventos/contproc/TTreiCap.java | 2 +- .../eventos/contproc/TransformType.java | 4 +- .../eventos/contproc/TransformsType.java | 2 +- .../eventos/contproc/X509DataType.java | 14 +- .../contproc/X509IssuerSerialType.java | 2 +- .../eventos/contproc/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/contratavnp/DSAKeyValueType.java | 2 +- .../eventos/contratavnp/DigestMethodType.java | 4 +- .../esquemas/eventos/contratavnp/ESocial.java | 2 +- .../eventos/contratavnp/KeyInfoType.java | 22 +- .../eventos/contratavnp/KeyValueType.java | 6 +- .../eventos/contratavnp/ManifestType.java | 2 +- .../eventos/contratavnp/ObjectFactory.java | 2 +- .../eventos/contratavnp/ObjectType.java | 4 +- .../eventos/contratavnp/PGPDataType.java | 12 +- .../eventos/contratavnp/RSAKeyValueType.java | 2 +- .../eventos/contratavnp/ReferenceType.java | 2 +- .../contratavnp/RetrievalMethodType.java | 2 +- .../eventos/contratavnp/SPKIDataType.java | 4 +- .../contratavnp/SignatureMethodType.java | 2 +- .../contratavnp/SignaturePropertiesType.java | 2 +- .../contratavnp/SignaturePropertyType.java | 4 +- .../eventos/contratavnp/SignatureType.java | 2 +- .../contratavnp/SignatureValueType.java | 2 +- .../eventos/contratavnp/SignedInfoType.java | 2 +- .../eventos/contratavnp/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/contratavnp/TAprend.java | 2 +- .../eventos/contratavnp/TContato.java | 2 +- .../eventos/contratavnp/TDetReemb.java | 2 +- .../eventos/contratavnp/TDetReembTot.java | 2 +- .../eventos/contratavnp/TEnderecoBrasil.java | 2 +- .../contratavnp/TEnderecoExterior.java | 2 +- .../eventos/contratavnp/THorContratual.java | 2 +- .../eventos/contratavnp/TIdeBeneficio.java | 2 +- .../eventos/contratavnp/TIdeEmpregador.java | 2 +- .../contratavnp/TIdeEmpregadorCnpj.java | 2 +- .../contratavnp/TIdeEmpregadorExclusao.java | 2 +- .../eventos/contratavnp/TIdeEventoEvtTab.java | 2 +- .../contratavnp/TIdeEventoEvtTabInicial.java | 2 +- .../contratavnp/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/contratavnp/TIdeEventoFolha.java | 2 +- .../contratavnp/TIdeEventoFolhaMensal.java | 2 +- .../contratavnp/TIdeEventoFolhaMensalPF.java | 2 +- .../contratavnp/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../contratavnp/TIdeEventoRetornoContrib.java | 2 +- .../contratavnp/TIdeEventoRetornoMensal.java | 2 +- .../contratavnp/TIdeEventoRetornoTrab.java | 2 +- .../eventos/contratavnp/TIdeEventoTrab.java | 2 +- .../contratavnp/TIdeEventoTrabAdmissao.java | 2 +- .../contratavnp/TIdeEventoTrabIndGuia.java | 2 +- .../contratavnp/TIdeEventoTrabJud.java | 2 +- .../eventos/contratavnp/TIdeEventoTrabPJ.java | 2 +- .../contratavnp/TIdeTrabSemVinculo.java | 2 +- .../eventos/contratavnp/TIdeVinculo.java | 4 +- .../eventos/contratavnp/TIdeVinculoBaixa.java | 4 +- .../eventos/contratavnp/TIdeVinculoSst.java | 4 +- .../eventos/contratavnp/TInfoEstagiario.java | 2 +- .../eventos/contratavnp/TInfoInterm.java | 2 +- .../esquemas/eventos/contratavnp/TInfoMV.java | 2 +- .../eventos/contratavnp/TInfoRRA.java | 2 +- .../eventos/contratavnp/TInfoSimples.java | 2 +- .../eventos/contratavnp/TItensRemunRpps.java | 2 +- .../eventos/contratavnp/TLocalTrabGeral.java | 2 +- .../eventos/contratavnp/TNascimento.java | 2 +- .../eventos/contratavnp/TNovaValidade.java | 2 +- .../eventos/contratavnp/TProcJudTrab.java | 2 +- .../eventos/contratavnp/TRemuneracao.java | 2 +- .../esquemas/eventos/contratavnp/TSSexo.java | 2 +- .../esquemas/eventos/contratavnp/TSSim.java | 2 +- .../eventos/contratavnp/TSSimNao.java | 2 +- .../eventos/contratavnp/TSTpAcConv.java | 11 +- .../eventos/contratavnp/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/contratavnp/TSUf.java | 2 +- .../eventos/contratavnp/TSucessaoVinc.java | 4 +- .../eventos/contratavnp/TTreiCap.java | 2 +- .../eventos/contratavnp/TransformType.java | 4 +- .../eventos/contratavnp/TransformsType.java | 2 +- .../eventos/contratavnp/X509DataType.java | 14 +- .../contratavnp/X509IssuerSerialType.java | 2 +- .../eventos/contratavnp/package-info.java | 2 +- .../cs/CanonicalizationMethodType.java | 4 +- .../esquemas/eventos/cs/DSAKeyValueType.java | 2 +- .../esquemas/eventos/cs/DigestMethodType.java | 4 +- .../esocial/esquemas/eventos/cs/ESocial.java | 2 +- .../esquemas/eventos/cs/KeyInfoType.java | 24 +- .../esquemas/eventos/cs/KeyValueType.java | 10 +- .../esquemas/eventos/cs/ManifestType.java | 2 +- .../esquemas/eventos/cs/ObjectFactory.java | 62 ++-- .../esquemas/eventos/cs/ObjectType.java | 4 +- .../esquemas/eventos/cs/PGPDataType.java | 12 +- .../esquemas/eventos/cs/RSAKeyValueType.java | 2 +- .../esquemas/eventos/cs/ReferenceType.java | 2 +- .../eventos/cs/RetrievalMethodType.java | 2 +- .../esquemas/eventos/cs/SPKIDataType.java | 2 +- .../eventos/cs/SignatureMethodType.java | 6 +- .../eventos/cs/SignaturePropertiesType.java | 2 +- .../eventos/cs/SignaturePropertyType.java | 4 +- .../esquemas/eventos/cs/SignatureType.java | 2 +- .../eventos/cs/SignatureValueType.java | 2 +- .../esquemas/eventos/cs/SignedInfoType.java | 2 +- .../esquemas/eventos/cs/TAlvaraJudicial.java | 2 +- .../esocial/esquemas/eventos/cs/TAprend.java | 2 +- .../esocial/esquemas/eventos/cs/TContato.java | 2 +- .../esquemas/eventos/cs/TDetReemb.java | 2 +- .../esquemas/eventos/cs/TDetReembTot.java | 2 +- .../esquemas/eventos/cs/TEnderecoBrasil.java | 2 +- .../eventos/cs/TEnderecoExterior.java | 2 +- .../esquemas/eventos/cs/THorContratual.java | 2 +- .../esquemas/eventos/cs/TIdeBeneficio.java | 2 +- .../esquemas/eventos/cs/TIdeEmpregador.java | 2 +- .../eventos/cs/TIdeEmpregadorCnpj.java | 2 +- .../eventos/cs/TIdeEmpregadorExclusao.java | 2 +- .../esquemas/eventos/cs/TIdeEventoEvtTab.java | 2 +- .../eventos/cs/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/cs/TIdeEventoExclusao.java | 2 +- .../cs/TIdeEventoExclusaoProcTrab.java | 2 +- .../esquemas/eventos/cs/TIdeEventoFolha.java | 2 +- .../eventos/cs/TIdeEventoFolhaMensal.java | 2 +- .../eventos/cs/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/cs/TIdeEventoFolhaOpp.java | 2 +- .../cs/TIdeEventoFolhaSemRetificacao.java | 2 +- .../eventos/cs/TIdeEventoRetornoContrib.java | 2 +- .../eventos/cs/TIdeEventoRetornoMensal.java | 2 +- .../eventos/cs/TIdeEventoRetornoTrab.java | 2 +- .../esquemas/eventos/cs/TIdeEventoTrab.java | 2 +- .../eventos/cs/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/cs/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/cs/TIdeEventoTrabJud.java | 2 +- .../esquemas/eventos/cs/TIdeEventoTrabPJ.java | 2 +- .../eventos/cs/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/cs/TIdeVinculo.java | 4 +- .../esquemas/eventos/cs/TIdeVinculoBaixa.java | 4 +- .../esquemas/eventos/cs/TIdeVinculoSst.java | 4 +- .../esquemas/eventos/cs/TInfoEstagiario.java | 2 +- .../esquemas/eventos/cs/TInfoInterm.java | 2 +- .../esocial/esquemas/eventos/cs/TInfoMV.java | 2 +- .../esocial/esquemas/eventos/cs/TInfoRRA.java | 2 +- .../esquemas/eventos/cs/TInfoSimples.java | 2 +- .../esquemas/eventos/cs/TItensRemunRpps.java | 2 +- .../esquemas/eventos/cs/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/cs/TNascimento.java | 2 +- .../esquemas/eventos/cs/TNovaValidade.java | 2 +- .../esquemas/eventos/cs/TProcJudTrab.java | 2 +- .../esquemas/eventos/cs/TRemuneracao.java | 2 +- .../esocial/esquemas/eventos/cs/TSSexo.java | 2 +- .../esocial/esquemas/eventos/cs/TSSim.java | 2 +- .../esocial/esquemas/eventos/cs/TSSimNao.java | 2 +- .../esquemas/eventos/cs/TSTpAcConv.java | 11 +- .../esquemas/eventos/cs/TSTpAcConvFGTS.java | 11 +- .../tst/esocial/esquemas/eventos/cs/TSUf.java | 2 +- .../esquemas/eventos/cs/TSucessaoVinc.java | 4 +- .../esocial/esquemas/eventos/cs/TTreiCap.java | 2 +- .../esquemas/eventos/cs/TransformType.java | 8 +- .../esquemas/eventos/cs/TransformsType.java | 2 +- .../esquemas/eventos/cs/X509DataType.java | 16 +- .../eventos/cs/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/cs/package-info.java | 2 +- .../deslig/CanonicalizationMethodType.java | 4 +- .../eventos/deslig/DSAKeyValueType.java | 2 +- .../eventos/deslig/DigestMethodType.java | 4 +- .../esquemas/eventos/deslig/ESocial.java | 9 +- .../esquemas/eventos/deslig/KeyInfoType.java | 22 +- .../esquemas/eventos/deslig/KeyValueType.java | 12 +- .../esquemas/eventos/deslig/ManifestType.java | 2 +- .../eventos/deslig/ObjectFactory.java | 72 ++-- .../esquemas/eventos/deslig/ObjectType.java | 4 +- .../esquemas/eventos/deslig/PGPDataType.java | 8 +- .../eventos/deslig/RSAKeyValueType.java | 2 +- .../eventos/deslig/ReferenceType.java | 2 +- .../eventos/deslig/RetrievalMethodType.java | 2 +- .../esquemas/eventos/deslig/SPKIDataType.java | 4 +- .../eventos/deslig/SignatureMethodType.java | 4 +- .../deslig/SignaturePropertiesType.java | 2 +- .../eventos/deslig/SignaturePropertyType.java | 4 +- .../eventos/deslig/SignatureType.java | 2 +- .../eventos/deslig/SignatureValueType.java | 2 +- .../eventos/deslig/SignedInfoType.java | 2 +- .../eventos/deslig/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/deslig/TAprend.java | 2 +- .../esquemas/eventos/deslig/TContato.java | 2 +- .../esquemas/eventos/deslig/TDetReemb.java | 2 +- .../esquemas/eventos/deslig/TDetReembTot.java | 2 +- .../eventos/deslig/TEnderecoBrasil.java | 2 +- .../eventos/deslig/TEnderecoExterior.java | 2 +- .../eventos/deslig/THorContratual.java | 2 +- .../eventos/deslig/TIdeBeneficio.java | 2 +- .../eventos/deslig/TIdeEmpregador.java | 2 +- .../eventos/deslig/TIdeEmpregadorCnpj.java | 2 +- .../deslig/TIdeEmpregadorExclusao.java | 2 +- .../esquemas/eventos/deslig/TIdeEstabLot.java | 2 +- .../eventos/deslig/TIdeEventoEvtTab.java | 2 +- .../deslig/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/deslig/TIdeEventoExclusao.java | 2 +- .../deslig/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/deslig/TIdeEventoFolha.java | 2 +- .../eventos/deslig/TIdeEventoFolhaMensal.java | 2 +- .../deslig/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/deslig/TIdeEventoFolhaOpp.java | 2 +- .../deslig/TIdeEventoFolhaSemRetificacao.java | 2 +- .../deslig/TIdeEventoRetornoContrib.java | 2 +- .../deslig/TIdeEventoRetornoMensal.java | 2 +- .../eventos/deslig/TIdeEventoRetornoTrab.java | 2 +- .../eventos/deslig/TIdeEventoTrab.java | 2 +- .../deslig/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/deslig/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/deslig/TIdeEventoTrabJud.java | 2 +- .../eventos/deslig/TIdeEventoTrabPJ.java | 2 +- .../eventos/deslig/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/deslig/TIdeVinculo.java | 4 +- .../eventos/deslig/TIdeVinculoBaixa.java | 4 +- .../eventos/deslig/TIdeVinculoSst.java | 4 +- .../eventos/deslig/TInfoEstagiario.java | 2 +- .../esquemas/eventos/deslig/TInfoInterm.java | 2 +- .../esquemas/eventos/deslig/TInfoMV.java | 2 +- .../esquemas/eventos/deslig/TInfoRRA.java | 2 +- .../esquemas/eventos/deslig/TInfoSimples.java | 2 +- .../eventos/deslig/TItensRemunRpps.java | 2 +- .../eventos/deslig/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/deslig/TNascimento.java | 2 +- .../eventos/deslig/TNovaValidade.java | 2 +- .../esquemas/eventos/deslig/TProcJudTrab.java | 2 +- .../esquemas/eventos/deslig/TRemuneracao.java | 2 +- .../esquemas/eventos/deslig/TSSexo.java | 2 +- .../esquemas/eventos/deslig/TSSim.java | 2 +- .../esquemas/eventos/deslig/TSSimNao.java | 2 +- .../esquemas/eventos/deslig/TSTpAcConv.java | 11 +- .../eventos/deslig/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/deslig/TSUf.java | 2 +- .../eventos/deslig/TSucessaoVinc.java | 4 +- .../esquemas/eventos/deslig/TTreiCap.java | 2 +- .../eventos/deslig/TransformType.java | 4 +- .../eventos/deslig/TransformsType.java | 2 +- .../esquemas/eventos/deslig/X509DataType.java | 16 +- .../eventos/deslig/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/deslig/package-info.java | 2 +- .../exclusao/CanonicalizationMethodType.java | 2 +- .../eventos/exclusao/DSAKeyValueType.java | 2 +- .../eventos/exclusao/DigestMethodType.java | 4 +- .../esquemas/eventos/exclusao/ESocial.java | 2 +- .../eventos/exclusao/KeyInfoType.java | 22 +- .../eventos/exclusao/KeyValueType.java | 10 +- .../eventos/exclusao/ManifestType.java | 2 +- .../eventos/exclusao/ObjectFactory.java | 86 ++--- .../esquemas/eventos/exclusao/ObjectType.java | 4 +- .../eventos/exclusao/PGPDataType.java | 10 +- .../eventos/exclusao/RSAKeyValueType.java | 2 +- .../eventos/exclusao/ReferenceType.java | 2 +- .../eventos/exclusao/RetrievalMethodType.java | 2 +- .../eventos/exclusao/SPKIDataType.java | 4 +- .../eventos/exclusao/SignatureMethodType.java | 2 +- .../exclusao/SignaturePropertiesType.java | 2 +- .../exclusao/SignaturePropertyType.java | 4 +- .../eventos/exclusao/SignatureType.java | 2 +- .../eventos/exclusao/SignatureValueType.java | 2 +- .../eventos/exclusao/SignedInfoType.java | 2 +- .../eventos/exclusao/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/exclusao/TAprend.java | 2 +- .../esquemas/eventos/exclusao/TContato.java | 2 +- .../esquemas/eventos/exclusao/TDetReemb.java | 2 +- .../eventos/exclusao/TDetReembTot.java | 2 +- .../eventos/exclusao/TEnderecoBrasil.java | 2 +- .../eventos/exclusao/TEnderecoExterior.java | 2 +- .../eventos/exclusao/THorContratual.java | 2 +- .../eventos/exclusao/TIdeBeneficio.java | 2 +- .../eventos/exclusao/TIdeEmpregador.java | 2 +- .../eventos/exclusao/TIdeEmpregadorCnpj.java | 2 +- .../exclusao/TIdeEmpregadorExclusao.java | 2 +- .../eventos/exclusao/TIdeEventoEvtTab.java | 2 +- .../exclusao/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/exclusao/TIdeEventoExclusao.java | 2 +- .../exclusao/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/exclusao/TIdeEventoFolha.java | 2 +- .../exclusao/TIdeEventoFolhaMensal.java | 2 +- .../exclusao/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/exclusao/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../exclusao/TIdeEventoRetornoContrib.java | 2 +- .../exclusao/TIdeEventoRetornoMensal.java | 2 +- .../exclusao/TIdeEventoRetornoTrab.java | 2 +- .../eventos/exclusao/TIdeEventoTrab.java | 2 +- .../exclusao/TIdeEventoTrabAdmissao.java | 2 +- .../exclusao/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/exclusao/TIdeEventoTrabJud.java | 2 +- .../eventos/exclusao/TIdeEventoTrabPJ.java | 2 +- .../eventos/exclusao/TIdeTrabSemVinculo.java | 2 +- .../eventos/exclusao/TIdeVinculo.java | 4 +- .../eventos/exclusao/TIdeVinculoBaixa.java | 4 +- .../eventos/exclusao/TIdeVinculoSst.java | 4 +- .../eventos/exclusao/TInfoEstagiario.java | 2 +- .../eventos/exclusao/TInfoInterm.java | 2 +- .../esquemas/eventos/exclusao/TInfoMV.java | 2 +- .../esquemas/eventos/exclusao/TInfoRRA.java | 2 +- .../eventos/exclusao/TInfoSimples.java | 2 +- .../eventos/exclusao/TItensRemunRpps.java | 2 +- .../eventos/exclusao/TLocalTrabGeral.java | 2 +- .../eventos/exclusao/TNascimento.java | 2 +- .../eventos/exclusao/TNovaValidade.java | 2 +- .../eventos/exclusao/TProcJudTrab.java | 2 +- .../eventos/exclusao/TRemuneracao.java | 2 +- .../esquemas/eventos/exclusao/TSSexo.java | 2 +- .../esquemas/eventos/exclusao/TSSim.java | 2 +- .../esquemas/eventos/exclusao/TSSimNao.java | 2 +- .../esquemas/eventos/exclusao/TSTpAcConv.java | 11 +- .../eventos/exclusao/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/exclusao/TSUf.java | 2 +- .../eventos/exclusao/TSucessaoVinc.java | 4 +- .../esquemas/eventos/exclusao/TTreiCap.java | 2 +- .../eventos/exclusao/TransformType.java | 4 +- .../eventos/exclusao/TransformsType.java | 2 +- .../eventos/exclusao/X509DataType.java | 18 +- .../exclusao/X509IssuerSerialType.java | 2 +- .../eventos/exclusao/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/excproctrab/DSAKeyValueType.java | 2 +- .../eventos/excproctrab/DigestMethodType.java | 4 +- .../esquemas/eventos/excproctrab/ESocial.java | 2 +- .../eventos/excproctrab/KeyInfoType.java | 20 +- .../eventos/excproctrab/KeyValueType.java | 10 +- .../eventos/excproctrab/ManifestType.java | 2 +- .../eventos/excproctrab/ObjectFactory.java | 62 ++-- .../eventos/excproctrab/ObjectType.java | 4 +- .../eventos/excproctrab/PGPDataType.java | 10 +- .../eventos/excproctrab/RSAKeyValueType.java | 2 +- .../eventos/excproctrab/ReferenceType.java | 2 +- .../excproctrab/RetrievalMethodType.java | 2 +- .../eventos/excproctrab/SPKIDataType.java | 4 +- .../excproctrab/SignatureMethodType.java | 4 +- .../excproctrab/SignaturePropertiesType.java | 2 +- .../excproctrab/SignaturePropertyType.java | 4 +- .../eventos/excproctrab/SignatureType.java | 2 +- .../excproctrab/SignatureValueType.java | 2 +- .../eventos/excproctrab/SignedInfoType.java | 2 +- .../eventos/excproctrab/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/excproctrab/TAprend.java | 2 +- .../eventos/excproctrab/TContato.java | 2 +- .../eventos/excproctrab/TDetReemb.java | 2 +- .../eventos/excproctrab/TDetReembTot.java | 2 +- .../eventos/excproctrab/TEnderecoBrasil.java | 2 +- .../excproctrab/TEnderecoExterior.java | 2 +- .../eventos/excproctrab/THorContratual.java | 2 +- .../eventos/excproctrab/TIdeBeneficio.java | 2 +- .../eventos/excproctrab/TIdeEmpregador.java | 2 +- .../excproctrab/TIdeEmpregadorCnpj.java | 2 +- .../excproctrab/TIdeEmpregadorExclusao.java | 2 +- .../eventos/excproctrab/TIdeEventoEvtTab.java | 2 +- .../excproctrab/TIdeEventoEvtTabInicial.java | 2 +- .../excproctrab/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/excproctrab/TIdeEventoFolha.java | 2 +- .../excproctrab/TIdeEventoFolhaMensal.java | 2 +- .../excproctrab/TIdeEventoFolhaMensalPF.java | 2 +- .../excproctrab/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../excproctrab/TIdeEventoRetornoContrib.java | 2 +- .../excproctrab/TIdeEventoRetornoMensal.java | 2 +- .../excproctrab/TIdeEventoRetornoTrab.java | 2 +- .../eventos/excproctrab/TIdeEventoTrab.java | 2 +- .../excproctrab/TIdeEventoTrabAdmissao.java | 2 +- .../excproctrab/TIdeEventoTrabIndGuia.java | 2 +- .../excproctrab/TIdeEventoTrabJud.java | 2 +- .../eventos/excproctrab/TIdeEventoTrabPJ.java | 2 +- .../excproctrab/TIdeTrabSemVinculo.java | 2 +- .../eventos/excproctrab/TIdeVinculo.java | 4 +- .../eventos/excproctrab/TIdeVinculoBaixa.java | 4 +- .../eventos/excproctrab/TIdeVinculoSst.java | 4 +- .../eventos/excproctrab/TInfoEstagiario.java | 2 +- .../eventos/excproctrab/TInfoInterm.java | 2 +- .../esquemas/eventos/excproctrab/TInfoMV.java | 2 +- .../eventos/excproctrab/TInfoRRA.java | 2 +- .../eventos/excproctrab/TInfoSimples.java | 2 +- .../eventos/excproctrab/TItensRemunRpps.java | 2 +- .../eventos/excproctrab/TLocalTrabGeral.java | 2 +- .../eventos/excproctrab/TNascimento.java | 2 +- .../eventos/excproctrab/TNovaValidade.java | 2 +- .../eventos/excproctrab/TProcJudTrab.java | 2 +- .../eventos/excproctrab/TRemuneracao.java | 2 +- .../esquemas/eventos/excproctrab/TSSexo.java | 2 +- .../esquemas/eventos/excproctrab/TSSim.java | 2 +- .../eventos/excproctrab/TSSimNao.java | 2 +- .../eventos/excproctrab/TSTpAcConv.java | 11 +- .../eventos/excproctrab/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/excproctrab/TSUf.java | 2 +- .../eventos/excproctrab/TSucessaoVinc.java | 4 +- .../eventos/excproctrab/TTreiCap.java | 2 +- .../eventos/excproctrab/TransformType.java | 4 +- .../eventos/excproctrab/TransformsType.java | 2 +- .../eventos/excproctrab/X509DataType.java | 14 +- .../excproctrab/X509IssuerSerialType.java | 2 +- .../eventos/excproctrab/package-info.java | 2 +- .../exprisco/CanonicalizationMethodType.java | 2 +- .../eventos/exprisco/DSAKeyValueType.java | 2 +- .../eventos/exprisco/DigestMethodType.java | 4 +- .../esquemas/eventos/exprisco/ESocial.java | 2 +- .../eventos/exprisco/KeyInfoType.java | 20 +- .../eventos/exprisco/KeyValueType.java | 6 +- .../eventos/exprisco/ManifestType.java | 2 +- .../eventos/exprisco/ObjectFactory.java | 32 +- .../esquemas/eventos/exprisco/ObjectType.java | 4 +- .../eventos/exprisco/PGPDataType.java | 14 +- .../eventos/exprisco/RSAKeyValueType.java | 2 +- .../eventos/exprisco/ReferenceType.java | 2 +- .../eventos/exprisco/RetrievalMethodType.java | 2 +- .../eventos/exprisco/SPKIDataType.java | 4 +- .../eventos/exprisco/SignatureMethodType.java | 4 +- .../exprisco/SignaturePropertiesType.java | 2 +- .../exprisco/SignaturePropertyType.java | 4 +- .../eventos/exprisco/SignatureType.java | 2 +- .../eventos/exprisco/SignatureValueType.java | 2 +- .../eventos/exprisco/SignedInfoType.java | 2 +- .../eventos/exprisco/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/exprisco/TAprend.java | 2 +- .../esquemas/eventos/exprisco/TContato.java | 2 +- .../esquemas/eventos/exprisco/TDetReemb.java | 2 +- .../eventos/exprisco/TDetReembTot.java | 2 +- .../eventos/exprisco/TEnderecoBrasil.java | 2 +- .../eventos/exprisco/TEnderecoExterior.java | 2 +- .../eventos/exprisco/THorContratual.java | 2 +- .../eventos/exprisco/TIdeBeneficio.java | 2 +- .../eventos/exprisco/TIdeEmpregador.java | 2 +- .../eventos/exprisco/TIdeEmpregadorCnpj.java | 2 +- .../exprisco/TIdeEmpregadorExclusao.java | 2 +- .../eventos/exprisco/TIdeEventoEvtTab.java | 2 +- .../exprisco/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/exprisco/TIdeEventoExclusao.java | 2 +- .../exprisco/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/exprisco/TIdeEventoFolha.java | 2 +- .../exprisco/TIdeEventoFolhaMensal.java | 2 +- .../exprisco/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/exprisco/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../exprisco/TIdeEventoRetornoContrib.java | 2 +- .../exprisco/TIdeEventoRetornoMensal.java | 2 +- .../exprisco/TIdeEventoRetornoTrab.java | 2 +- .../eventos/exprisco/TIdeEventoTrab.java | 2 +- .../exprisco/TIdeEventoTrabAdmissao.java | 2 +- .../exprisco/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/exprisco/TIdeEventoTrabJud.java | 2 +- .../eventos/exprisco/TIdeEventoTrabPJ.java | 2 +- .../eventos/exprisco/TIdeTrabSemVinculo.java | 2 +- .../eventos/exprisco/TIdeVinculo.java | 4 +- .../eventos/exprisco/TIdeVinculoBaixa.java | 4 +- .../eventos/exprisco/TIdeVinculoSst.java | 4 +- .../eventos/exprisco/TInfoEstagiario.java | 2 +- .../eventos/exprisco/TInfoInterm.java | 2 +- .../esquemas/eventos/exprisco/TInfoMV.java | 2 +- .../esquemas/eventos/exprisco/TInfoRRA.java | 2 +- .../eventos/exprisco/TInfoSimples.java | 2 +- .../eventos/exprisco/TItensRemunRpps.java | 2 +- .../eventos/exprisco/TLocalTrabGeral.java | 2 +- .../eventos/exprisco/TNascimento.java | 2 +- .../eventos/exprisco/TNovaValidade.java | 2 +- .../eventos/exprisco/TProcJudTrab.java | 2 +- .../eventos/exprisco/TRemuneracao.java | 2 +- .../esquemas/eventos/exprisco/TSSexo.java | 2 +- .../esquemas/eventos/exprisco/TSSim.java | 2 +- .../esquemas/eventos/exprisco/TSSimNao.java | 2 +- .../esquemas/eventos/exprisco/TSTpAcConv.java | 11 +- .../eventos/exprisco/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/exprisco/TSUf.java | 2 +- .../eventos/exprisco/TSucessaoVinc.java | 4 +- .../esquemas/eventos/exprisco/TTreiCap.java | 2 +- .../eventos/exprisco/TransformType.java | 6 +- .../eventos/exprisco/TransformsType.java | 2 +- .../eventos/exprisco/X509DataType.java | 10 +- .../exprisco/X509IssuerSerialType.java | 2 +- .../eventos/exprisco/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/fechaevper/DSAKeyValueType.java | 2 +- .../eventos/fechaevper/DigestMethodType.java | 4 +- .../esquemas/eventos/fechaevper/ESocial.java | 2 +- .../eventos/fechaevper/KeyInfoType.java | 14 +- .../eventos/fechaevper/KeyValueType.java | 10 +- .../eventos/fechaevper/ManifestType.java | 2 +- .../eventos/fechaevper/ObjectFactory.java | 84 ++--- .../eventos/fechaevper/ObjectType.java | 4 +- .../eventos/fechaevper/PGPDataType.java | 8 +- .../eventos/fechaevper/RSAKeyValueType.java | 2 +- .../eventos/fechaevper/ReferenceType.java | 2 +- .../fechaevper/RetrievalMethodType.java | 2 +- .../eventos/fechaevper/SPKIDataType.java | 6 +- .../fechaevper/SignatureMethodType.java | 4 +- .../fechaevper/SignaturePropertiesType.java | 2 +- .../fechaevper/SignaturePropertyType.java | 4 +- .../eventos/fechaevper/SignatureType.java | 2 +- .../fechaevper/SignatureValueType.java | 2 +- .../eventos/fechaevper/SignedInfoType.java | 2 +- .../eventos/fechaevper/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/fechaevper/TAprend.java | 2 +- .../esquemas/eventos/fechaevper/TContato.java | 2 +- .../eventos/fechaevper/TDetReemb.java | 2 +- .../eventos/fechaevper/TDetReembTot.java | 2 +- .../eventos/fechaevper/TEnderecoBrasil.java | 2 +- .../eventos/fechaevper/TEnderecoExterior.java | 2 +- .../eventos/fechaevper/THorContratual.java | 2 +- .../eventos/fechaevper/TIdeBeneficio.java | 2 +- .../eventos/fechaevper/TIdeEmpregador.java | 2 +- .../fechaevper/TIdeEmpregadorCnpj.java | 2 +- .../fechaevper/TIdeEmpregadorExclusao.java | 2 +- .../eventos/fechaevper/TIdeEventoEvtTab.java | 2 +- .../fechaevper/TIdeEventoEvtTabInicial.java | 2 +- .../fechaevper/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/fechaevper/TIdeEventoFolha.java | 2 +- .../fechaevper/TIdeEventoFolhaMensal.java | 2 +- .../fechaevper/TIdeEventoFolhaMensalPF.java | 2 +- .../fechaevper/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../fechaevper/TIdeEventoRetornoContrib.java | 2 +- .../fechaevper/TIdeEventoRetornoMensal.java | 2 +- .../fechaevper/TIdeEventoRetornoTrab.java | 2 +- .../eventos/fechaevper/TIdeEventoTrab.java | 2 +- .../fechaevper/TIdeEventoTrabAdmissao.java | 2 +- .../fechaevper/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/fechaevper/TIdeEventoTrabJud.java | 2 +- .../eventos/fechaevper/TIdeEventoTrabPJ.java | 2 +- .../fechaevper/TIdeTrabSemVinculo.java | 2 +- .../eventos/fechaevper/TIdeVinculo.java | 4 +- .../eventos/fechaevper/TIdeVinculoBaixa.java | 4 +- .../eventos/fechaevper/TIdeVinculoSst.java | 4 +- .../eventos/fechaevper/TInfoEstagiario.java | 2 +- .../eventos/fechaevper/TInfoInterm.java | 2 +- .../esquemas/eventos/fechaevper/TInfoMV.java | 2 +- .../esquemas/eventos/fechaevper/TInfoRRA.java | 2 +- .../eventos/fechaevper/TInfoSimples.java | 2 +- .../eventos/fechaevper/TItensRemunRpps.java | 2 +- .../eventos/fechaevper/TLocalTrabGeral.java | 2 +- .../eventos/fechaevper/TNascimento.java | 2 +- .../eventos/fechaevper/TNovaValidade.java | 2 +- .../eventos/fechaevper/TProcJudTrab.java | 2 +- .../eventos/fechaevper/TRemuneracao.java | 2 +- .../esquemas/eventos/fechaevper/TSSexo.java | 2 +- .../esquemas/eventos/fechaevper/TSSim.java | 2 +- .../esquemas/eventos/fechaevper/TSSimNao.java | 2 +- .../eventos/fechaevper/TSTpAcConv.java | 11 +- .../eventos/fechaevper/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/fechaevper/TSUf.java | 2 +- .../eventos/fechaevper/TSucessaoVinc.java | 4 +- .../esquemas/eventos/fechaevper/TTreiCap.java | 2 +- .../eventos/fechaevper/TransformType.java | 6 +- .../eventos/fechaevper/TransformsType.java | 2 +- .../eventos/fechaevper/X509DataType.java | 12 +- .../fechaevper/X509IssuerSerialType.java | 2 +- .../eventos/fechaevper/package-info.java | 2 +- .../fgts/CanonicalizationMethodType.java | 4 +- .../eventos/fgts/DSAKeyValueType.java | 2 +- .../eventos/fgts/DigestMethodType.java | 4 +- .../esquemas/eventos/fgts/ESocial.java | 2 +- .../esquemas/eventos/fgts/KeyInfoType.java | 22 +- .../esquemas/eventos/fgts/KeyValueType.java | 10 +- .../esquemas/eventos/fgts/ManifestType.java | 2 +- .../esquemas/eventos/fgts/ObjectFactory.java | 62 ++-- .../esquemas/eventos/fgts/ObjectType.java | 4 +- .../esquemas/eventos/fgts/PGPDataType.java | 14 +- .../eventos/fgts/RSAKeyValueType.java | 2 +- .../esquemas/eventos/fgts/ReferenceType.java | 2 +- .../eventos/fgts/RetrievalMethodType.java | 2 +- .../esquemas/eventos/fgts/SPKIDataType.java | 4 +- .../eventos/fgts/SignatureMethodType.java | 4 +- .../eventos/fgts/SignaturePropertiesType.java | 2 +- .../eventos/fgts/SignaturePropertyType.java | 4 +- .../esquemas/eventos/fgts/SignatureType.java | 2 +- .../eventos/fgts/SignatureValueType.java | 2 +- .../esquemas/eventos/fgts/SignedInfoType.java | 2 +- .../eventos/fgts/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/fgts/TAprend.java | 2 +- .../esquemas/eventos/fgts/TContato.java | 2 +- .../esquemas/eventos/fgts/TDetReemb.java | 2 +- .../esquemas/eventos/fgts/TDetReembTot.java | 2 +- .../eventos/fgts/TEnderecoBrasil.java | 2 +- .../eventos/fgts/TEnderecoExterior.java | 2 +- .../esquemas/eventos/fgts/THorContratual.java | 2 +- .../esquemas/eventos/fgts/TIdeBeneficio.java | 2 +- .../esquemas/eventos/fgts/TIdeEmpregador.java | 2 +- .../eventos/fgts/TIdeEmpregadorCnpj.java | 2 +- .../eventos/fgts/TIdeEmpregadorExclusao.java | 2 +- .../eventos/fgts/TIdeEventoEvtTab.java | 2 +- .../eventos/fgts/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/fgts/TIdeEventoExclusao.java | 2 +- .../fgts/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/fgts/TIdeEventoFolha.java | 2 +- .../eventos/fgts/TIdeEventoFolhaMensal.java | 2 +- .../eventos/fgts/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/fgts/TIdeEventoFolhaOpp.java | 2 +- .../fgts/TIdeEventoFolhaSemRetificacao.java | 2 +- .../fgts/TIdeEventoRetornoContrib.java | 2 +- .../eventos/fgts/TIdeEventoRetornoMensal.java | 2 +- .../eventos/fgts/TIdeEventoRetornoTrab.java | 2 +- .../esquemas/eventos/fgts/TIdeEventoTrab.java | 2 +- .../eventos/fgts/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/fgts/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/fgts/TIdeEventoTrabJud.java | 2 +- .../eventos/fgts/TIdeEventoTrabPJ.java | 2 +- .../eventos/fgts/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/fgts/TIdeVinculo.java | 4 +- .../eventos/fgts/TIdeVinculoBaixa.java | 4 +- .../esquemas/eventos/fgts/TIdeVinculoSst.java | 4 +- .../eventos/fgts/TInfoEstagiario.java | 2 +- .../esquemas/eventos/fgts/TInfoInterm.java | 2 +- .../esquemas/eventos/fgts/TInfoMV.java | 2 +- .../esquemas/eventos/fgts/TInfoRRA.java | 2 +- .../esquemas/eventos/fgts/TInfoSimples.java | 2 +- .../eventos/fgts/TItensRemunRpps.java | 2 +- .../eventos/fgts/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/fgts/TNascimento.java | 2 +- .../esquemas/eventos/fgts/TNovaValidade.java | 2 +- .../esquemas/eventos/fgts/TProcJudTrab.java | 2 +- .../esquemas/eventos/fgts/TRemuneracao.java | 2 +- .../esocial/esquemas/eventos/fgts/TSSexo.java | 2 +- .../esocial/esquemas/eventos/fgts/TSSim.java | 2 +- .../esquemas/eventos/fgts/TSSimNao.java | 2 +- .../esquemas/eventos/fgts/TSTpAcConv.java | 11 +- .../esquemas/eventos/fgts/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/fgts/TSUf.java | 2 +- .../esquemas/eventos/fgts/TSucessaoVinc.java | 4 +- .../esquemas/eventos/fgts/TTreiCap.java | 2 +- .../esquemas/eventos/fgts/TransformType.java | 6 +- .../esquemas/eventos/fgts/TransformsType.java | 2 +- .../esquemas/eventos/fgts/X509DataType.java | 18 +- .../eventos/fgts/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/fgts/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/fgtsproctrab/DSAKeyValueType.java | 2 +- .../fgtsproctrab/DigestMethodType.java | 4 +- .../eventos/fgtsproctrab/ESocial.java | 19 +- .../eventos/fgtsproctrab/KeyInfoType.java | 22 +- .../eventos/fgtsproctrab/KeyValueType.java | 8 +- .../eventos/fgtsproctrab/ManifestType.java | 2 +- .../eventos/fgtsproctrab/ObjectFactory.java | 72 ++-- .../eventos/fgtsproctrab/ObjectType.java | 4 +- .../eventos/fgtsproctrab/PGPDataType.java | 10 +- .../eventos/fgtsproctrab/RSAKeyValueType.java | 2 +- .../eventos/fgtsproctrab/ReferenceType.java | 2 +- .../fgtsproctrab/RetrievalMethodType.java | 2 +- .../eventos/fgtsproctrab/SPKIDataType.java | 6 +- .../fgtsproctrab/SignatureMethodType.java | 2 +- .../fgtsproctrab/SignaturePropertiesType.java | 2 +- .../fgtsproctrab/SignaturePropertyType.java | 4 +- .../eventos/fgtsproctrab/SignatureType.java | 2 +- .../fgtsproctrab/SignatureValueType.java | 2 +- .../eventos/fgtsproctrab/SignedInfoType.java | 2 +- .../eventos/fgtsproctrab/TAlvaraJudicial.java | 2 +- .../eventos/fgtsproctrab/TAprend.java | 2 +- .../eventos/fgtsproctrab/TContato.java | 2 +- .../eventos/fgtsproctrab/TDetReemb.java | 2 +- .../eventos/fgtsproctrab/TDetReembTot.java | 2 +- .../eventos/fgtsproctrab/TEnderecoBrasil.java | 2 +- .../fgtsproctrab/TEnderecoExterior.java | 2 +- .../eventos/fgtsproctrab/THorContratual.java | 2 +- .../eventos/fgtsproctrab/TIdeBeneficio.java | 2 +- .../eventos/fgtsproctrab/TIdeEmpregador.java | 2 +- .../fgtsproctrab/TIdeEmpregadorCnpj.java | 2 +- .../fgtsproctrab/TIdeEmpregadorExclusao.java | 2 +- .../fgtsproctrab/TIdeEventoEvtTab.java | 2 +- .../fgtsproctrab/TIdeEventoEvtTabInicial.java | 2 +- .../fgtsproctrab/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/fgtsproctrab/TIdeEventoFolha.java | 2 +- .../fgtsproctrab/TIdeEventoFolhaMensal.java | 2 +- .../fgtsproctrab/TIdeEventoFolhaMensalPF.java | 2 +- .../fgtsproctrab/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../TIdeEventoRetornoContrib.java | 2 +- .../fgtsproctrab/TIdeEventoRetornoMensal.java | 2 +- .../fgtsproctrab/TIdeEventoRetornoTrab.java | 2 +- .../eventos/fgtsproctrab/TIdeEventoTrab.java | 2 +- .../fgtsproctrab/TIdeEventoTrabAdmissao.java | 2 +- .../fgtsproctrab/TIdeEventoTrabIndGuia.java | 2 +- .../fgtsproctrab/TIdeEventoTrabJud.java | 2 +- .../fgtsproctrab/TIdeEventoTrabPJ.java | 2 +- .../fgtsproctrab/TIdeTrabSemVinculo.java | 2 +- .../eventos/fgtsproctrab/TIdeVinculo.java | 4 +- .../fgtsproctrab/TIdeVinculoBaixa.java | 4 +- .../eventos/fgtsproctrab/TIdeVinculoSst.java | 4 +- .../eventos/fgtsproctrab/TInfoEstagiario.java | 2 +- .../eventos/fgtsproctrab/TInfoInterm.java | 2 +- .../eventos/fgtsproctrab/TInfoMV.java | 2 +- .../eventos/fgtsproctrab/TInfoRRA.java | 2 +- .../eventos/fgtsproctrab/TInfoSimples.java | 2 +- .../eventos/fgtsproctrab/TItensRemunRpps.java | 2 +- .../eventos/fgtsproctrab/TLocalTrabGeral.java | 2 +- .../eventos/fgtsproctrab/TNascimento.java | 2 +- .../eventos/fgtsproctrab/TNovaValidade.java | 2 +- .../eventos/fgtsproctrab/TProcJudTrab.java | 2 +- .../eventos/fgtsproctrab/TRemuneracao.java | 2 +- .../esquemas/eventos/fgtsproctrab/TSSexo.java | 2 +- .../esquemas/eventos/fgtsproctrab/TSSim.java | 2 +- .../eventos/fgtsproctrab/TSSimNao.java | 2 +- .../eventos/fgtsproctrab/TSTpAcConv.java | 11 +- .../eventos/fgtsproctrab/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/fgtsproctrab/TSUf.java | 2 +- .../eventos/fgtsproctrab/TSucessaoVinc.java | 4 +- .../eventos/fgtsproctrab/TTreiCap.java | 2 +- .../eventos/fgtsproctrab/TransformType.java | 4 +- .../eventos/fgtsproctrab/TransformsType.java | 2 +- .../eventos/fgtsproctrab/X509DataType.java | 14 +- .../fgtsproctrab/X509IssuerSerialType.java | 2 +- .../eventos/fgtsproctrab/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/infocomplper/DSAKeyValueType.java | 2 +- .../infocomplper/DigestMethodType.java | 4 +- .../eventos/infocomplper/ESocial.java | 2 +- .../eventos/infocomplper/KeyInfoType.java | 20 +- .../eventos/infocomplper/KeyValueType.java | 6 +- .../eventos/infocomplper/ManifestType.java | 2 +- .../eventos/infocomplper/ObjectFactory.java | 40 +-- .../eventos/infocomplper/ObjectType.java | 4 +- .../eventos/infocomplper/PGPDataType.java | 8 +- .../eventos/infocomplper/RSAKeyValueType.java | 2 +- .../eventos/infocomplper/ReferenceType.java | 2 +- .../infocomplper/RetrievalMethodType.java | 2 +- .../eventos/infocomplper/SPKIDataType.java | 6 +- .../infocomplper/SignatureMethodType.java | 4 +- .../infocomplper/SignaturePropertiesType.java | 2 +- .../infocomplper/SignaturePropertyType.java | 4 +- .../eventos/infocomplper/SignatureType.java | 2 +- .../infocomplper/SignatureValueType.java | 2 +- .../eventos/infocomplper/SignedInfoType.java | 2 +- .../eventos/infocomplper/TAlvaraJudicial.java | 2 +- .../eventos/infocomplper/TAprend.java | 2 +- .../eventos/infocomplper/TContato.java | 2 +- .../eventos/infocomplper/TDetReemb.java | 2 +- .../eventos/infocomplper/TDetReembTot.java | 2 +- .../eventos/infocomplper/TEnderecoBrasil.java | 2 +- .../infocomplper/TEnderecoExterior.java | 2 +- .../eventos/infocomplper/THorContratual.java | 2 +- .../eventos/infocomplper/TIdeBeneficio.java | 2 +- .../eventos/infocomplper/TIdeEmpregador.java | 2 +- .../infocomplper/TIdeEmpregadorCnpj.java | 2 +- .../infocomplper/TIdeEmpregadorExclusao.java | 2 +- .../infocomplper/TIdeEventoEvtTab.java | 2 +- .../infocomplper/TIdeEventoEvtTabInicial.java | 2 +- .../infocomplper/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/infocomplper/TIdeEventoFolha.java | 2 +- .../infocomplper/TIdeEventoFolhaMensal.java | 2 +- .../infocomplper/TIdeEventoFolhaMensalPF.java | 2 +- .../infocomplper/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../TIdeEventoRetornoContrib.java | 2 +- .../infocomplper/TIdeEventoRetornoMensal.java | 2 +- .../infocomplper/TIdeEventoRetornoTrab.java | 2 +- .../eventos/infocomplper/TIdeEventoTrab.java | 2 +- .../infocomplper/TIdeEventoTrabAdmissao.java | 2 +- .../infocomplper/TIdeEventoTrabIndGuia.java | 2 +- .../infocomplper/TIdeEventoTrabJud.java | 2 +- .../infocomplper/TIdeEventoTrabPJ.java | 2 +- .../infocomplper/TIdeTrabSemVinculo.java | 2 +- .../eventos/infocomplper/TIdeVinculo.java | 4 +- .../infocomplper/TIdeVinculoBaixa.java | 4 +- .../eventos/infocomplper/TIdeVinculoSst.java | 4 +- .../eventos/infocomplper/TInfoEstagiario.java | 2 +- .../eventos/infocomplper/TInfoInterm.java | 2 +- .../eventos/infocomplper/TInfoMV.java | 2 +- .../eventos/infocomplper/TInfoRRA.java | 2 +- .../eventos/infocomplper/TInfoSimples.java | 2 +- .../eventos/infocomplper/TItensRemunRpps.java | 2 +- .../eventos/infocomplper/TLocalTrabGeral.java | 2 +- .../eventos/infocomplper/TNascimento.java | 2 +- .../eventos/infocomplper/TNovaValidade.java | 2 +- .../eventos/infocomplper/TProcJudTrab.java | 2 +- .../eventos/infocomplper/TRemuneracao.java | 2 +- .../esquemas/eventos/infocomplper/TSSexo.java | 2 +- .../esquemas/eventos/infocomplper/TSSim.java | 2 +- .../eventos/infocomplper/TSSimNao.java | 2 +- .../eventos/infocomplper/TSTpAcConv.java | 11 +- .../eventos/infocomplper/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/infocomplper/TSUf.java | 2 +- .../eventos/infocomplper/TSucessaoVinc.java | 4 +- .../eventos/infocomplper/TTreiCap.java | 2 +- .../eventos/infocomplper/TransformType.java | 4 +- .../eventos/infocomplper/TransformsType.java | 2 +- .../eventos/infocomplper/X509DataType.java | 10 +- .../infocomplper/X509IssuerSerialType.java | 2 +- .../eventos/infocomplper/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../infoempregador/DSAKeyValueType.java | 2 +- .../infoempregador/DigestMethodType.java | 4 +- .../eventos/infoempregador/ESocial.java | 2 +- .../eventos/infoempregador/KeyInfoType.java | 26 +- .../eventos/infoempregador/KeyValueType.java | 8 +- .../eventos/infoempregador/ManifestType.java | 2 +- .../eventos/infoempregador/ObjectFactory.java | 58 ++-- .../eventos/infoempregador/ObjectType.java | 4 +- .../eventos/infoempregador/PGPDataType.java | 10 +- .../infoempregador/RSAKeyValueType.java | 2 +- .../eventos/infoempregador/ReferenceType.java | 2 +- .../infoempregador/RetrievalMethodType.java | 2 +- .../eventos/infoempregador/SPKIDataType.java | 4 +- .../infoempregador/SignatureMethodType.java | 4 +- .../SignaturePropertiesType.java | 2 +- .../infoempregador/SignaturePropertyType.java | 4 +- .../eventos/infoempregador/SignatureType.java | 2 +- .../infoempregador/SignatureValueType.java | 2 +- .../infoempregador/SignedInfoType.java | 2 +- .../infoempregador/TAlvaraJudicial.java | 2 +- .../eventos/infoempregador/TAprend.java | 2 +- .../eventos/infoempregador/TContato.java | 2 +- .../eventos/infoempregador/TDetReemb.java | 2 +- .../eventos/infoempregador/TDetReembTot.java | 2 +- .../infoempregador/TEnderecoBrasil.java | 2 +- .../infoempregador/TEnderecoExterior.java | 2 +- .../infoempregador/THorContratual.java | 2 +- .../eventos/infoempregador/TIdeBeneficio.java | 2 +- .../infoempregador/TIdeEmpregador.java | 2 +- .../infoempregador/TIdeEmpregadorCnpj.java | 2 +- .../TIdeEmpregadorExclusao.java | 2 +- .../infoempregador/TIdeEventoEvtTab.java | 2 +- .../TIdeEventoEvtTabInicial.java | 2 +- .../infoempregador/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../infoempregador/TIdeEventoFolha.java | 2 +- .../infoempregador/TIdeEventoFolhaMensal.java | 2 +- .../TIdeEventoFolhaMensalPF.java | 2 +- .../infoempregador/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../TIdeEventoRetornoContrib.java | 2 +- .../TIdeEventoRetornoMensal.java | 2 +- .../infoempregador/TIdeEventoRetornoTrab.java | 2 +- .../infoempregador/TIdeEventoTrab.java | 2 +- .../TIdeEventoTrabAdmissao.java | 2 +- .../infoempregador/TIdeEventoTrabIndGuia.java | 2 +- .../infoempregador/TIdeEventoTrabJud.java | 2 +- .../infoempregador/TIdeEventoTrabPJ.java | 2 +- .../eventos/infoempregador/TIdePeriodo.java | 2 +- .../infoempregador/TIdeTrabSemVinculo.java | 2 +- .../eventos/infoempregador/TIdeVinculo.java | 4 +- .../infoempregador/TIdeVinculoBaixa.java | 4 +- .../infoempregador/TIdeVinculoSst.java | 4 +- .../eventos/infoempregador/TInfoCadastro.java | 3 +- .../infoempregador/TInfoEstagiario.java | 2 +- .../eventos/infoempregador/TInfoInterm.java | 2 +- .../eventos/infoempregador/TInfoMV.java | 2 +- .../eventos/infoempregador/TInfoRRA.java | 2 +- .../eventos/infoempregador/TInfoSimples.java | 2 +- .../infoempregador/TItensRemunRpps.java | 2 +- .../infoempregador/TLocalTrabGeral.java | 2 +- .../eventos/infoempregador/TNascimento.java | 2 +- .../eventos/infoempregador/TNovaValidade.java | 2 +- .../eventos/infoempregador/TProcJudTrab.java | 2 +- .../eventos/infoempregador/TRemuneracao.java | 2 +- .../eventos/infoempregador/TSSexo.java | 2 +- .../eventos/infoempregador/TSSim.java | 2 +- .../eventos/infoempregador/TSSimNao.java | 2 +- .../eventos/infoempregador/TSTpAcConv.java | 11 +- .../infoempregador/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/infoempregador/TSUf.java | 2 +- .../eventos/infoempregador/TSucessaoVinc.java | 4 +- .../eventos/infoempregador/TTreiCap.java | 2 +- .../eventos/infoempregador/TransformType.java | 8 +- .../infoempregador/TransformsType.java | 2 +- .../eventos/infoempregador/X509DataType.java | 14 +- .../infoempregador/X509IssuerSerialType.java | 2 +- .../eventos/infoempregador/package-info.java | 2 +- .../irrf/CanonicalizationMethodType.java | 2 +- .../eventos/irrf/DSAKeyValueType.java | 2 +- .../eventos/irrf/DigestMethodType.java | 4 +- .../esquemas/eventos/irrf/ESocial.java | 2 +- .../esquemas/eventos/irrf/KeyInfoType.java | 22 +- .../esquemas/eventos/irrf/KeyValueType.java | 10 +- .../esquemas/eventos/irrf/ManifestType.java | 2 +- .../esquemas/eventos/irrf/ObjectFactory.java | 86 ++--- .../esquemas/eventos/irrf/ObjectType.java | 4 +- .../esquemas/eventos/irrf/PGPDataType.java | 10 +- .../eventos/irrf/RSAKeyValueType.java | 2 +- .../esquemas/eventos/irrf/ReferenceType.java | 2 +- .../eventos/irrf/RetrievalMethodType.java | 2 +- .../esquemas/eventos/irrf/SPKIDataType.java | 4 +- .../eventos/irrf/SignatureMethodType.java | 2 +- .../eventos/irrf/SignaturePropertiesType.java | 2 +- .../eventos/irrf/SignaturePropertyType.java | 4 +- .../esquemas/eventos/irrf/SignatureType.java | 2 +- .../eventos/irrf/SignatureValueType.java | 2 +- .../esquemas/eventos/irrf/SignedInfoType.java | 2 +- .../eventos/irrf/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/irrf/TAprend.java | 2 +- .../esquemas/eventos/irrf/TContato.java | 2 +- .../esquemas/eventos/irrf/TDetReemb.java | 2 +- .../esquemas/eventos/irrf/TDetReembTot.java | 2 +- .../eventos/irrf/TEnderecoBrasil.java | 2 +- .../eventos/irrf/TEnderecoExterior.java | 2 +- .../esquemas/eventos/irrf/THorContratual.java | 2 +- .../esquemas/eventos/irrf/TIdeBeneficio.java | 2 +- .../esquemas/eventos/irrf/TIdeEmpregador.java | 2 +- .../eventos/irrf/TIdeEmpregadorCnpj.java | 2 +- .../eventos/irrf/TIdeEmpregadorExclusao.java | 2 +- .../eventos/irrf/TIdeEventoEvtTab.java | 2 +- .../eventos/irrf/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/irrf/TIdeEventoExclusao.java | 2 +- .../irrf/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/irrf/TIdeEventoFolha.java | 2 +- .../eventos/irrf/TIdeEventoFolhaMensal.java | 2 +- .../eventos/irrf/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/irrf/TIdeEventoFolhaOpp.java | 2 +- .../irrf/TIdeEventoFolhaSemRetificacao.java | 2 +- .../irrf/TIdeEventoRetornoContrib.java | 2 +- .../eventos/irrf/TIdeEventoRetornoMensal.java | 2 +- .../eventos/irrf/TIdeEventoRetornoTrab.java | 2 +- .../esquemas/eventos/irrf/TIdeEventoTrab.java | 2 +- .../eventos/irrf/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/irrf/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/irrf/TIdeEventoTrabJud.java | 2 +- .../eventos/irrf/TIdeEventoTrabPJ.java | 2 +- .../eventos/irrf/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/irrf/TIdeVinculo.java | 4 +- .../eventos/irrf/TIdeVinculoBaixa.java | 4 +- .../esquemas/eventos/irrf/TIdeVinculoSst.java | 4 +- .../eventos/irrf/TInfoEstagiario.java | 2 +- .../esquemas/eventos/irrf/TInfoInterm.java | 2 +- .../esquemas/eventos/irrf/TInfoMV.java | 2 +- .../esquemas/eventos/irrf/TInfoRRA.java | 2 +- .../esquemas/eventos/irrf/TInfoSimples.java | 2 +- .../eventos/irrf/TItensRemunRpps.java | 2 +- .../eventos/irrf/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/irrf/TNascimento.java | 2 +- .../esquemas/eventos/irrf/TNovaValidade.java | 2 +- .../esquemas/eventos/irrf/TProcJudTrab.java | 2 +- .../esquemas/eventos/irrf/TRemuneracao.java | 2 +- .../esocial/esquemas/eventos/irrf/TSSexo.java | 2 +- .../esocial/esquemas/eventos/irrf/TSSim.java | 2 +- .../esquemas/eventos/irrf/TSSimNao.java | 2 +- .../esquemas/eventos/irrf/TSTpAcConv.java | 11 +- .../esquemas/eventos/irrf/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/irrf/TSUf.java | 2 +- .../esquemas/eventos/irrf/TSucessaoVinc.java | 4 +- .../esquemas/eventos/irrf/TTreiCap.java | 2 +- .../esquemas/eventos/irrf/TransformType.java | 4 +- .../esquemas/eventos/irrf/TransformsType.java | 2 +- .../esquemas/eventos/irrf/X509DataType.java | 18 +- .../eventos/irrf/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/irrf/package-info.java | 2 +- .../irrfbenef/CanonicalizationMethodType.java | 4 +- .../eventos/irrfbenef/DSAKeyValueType.java | 2 +- .../eventos/irrfbenef/DigestMethodType.java | 4 +- .../esquemas/eventos/irrfbenef/ESocial.java | 16 +- .../eventos/irrfbenef/KeyInfoType.java | 22 +- .../eventos/irrfbenef/KeyValueType.java | 12 +- .../eventos/irrfbenef/ManifestType.java | 2 +- .../eventos/irrfbenef/ObjectFactory.java | 20 +- .../eventos/irrfbenef/ObjectType.java | 4 +- .../eventos/irrfbenef/PGPDataType.java | 12 +- .../eventos/irrfbenef/RSAKeyValueType.java | 2 +- .../eventos/irrfbenef/ReferenceType.java | 2 +- .../irrfbenef/RetrievalMethodType.java | 2 +- .../eventos/irrfbenef/SPKIDataType.java | 2 +- .../irrfbenef/SignatureMethodType.java | 4 +- .../irrfbenef/SignaturePropertiesType.java | 2 +- .../irrfbenef/SignaturePropertyType.java | 4 +- .../eventos/irrfbenef/SignatureType.java | 2 +- .../eventos/irrfbenef/SignatureValueType.java | 2 +- .../eventos/irrfbenef/SignedInfoType.java | 2 +- .../eventos/irrfbenef/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/irrfbenef/TAprend.java | 2 +- .../esquemas/eventos/irrfbenef/TContato.java | 2 +- .../esquemas/eventos/irrfbenef/TDetReemb.java | 2 +- .../eventos/irrfbenef/TDetReembTot.java | 2 +- .../eventos/irrfbenef/TEnderecoBrasil.java | 2 +- .../eventos/irrfbenef/TEnderecoExterior.java | 2 +- .../eventos/irrfbenef/THorContratual.java | 2 +- .../eventos/irrfbenef/TIdeBeneficio.java | 2 +- .../eventos/irrfbenef/TIdeEmpregador.java | 2 +- .../eventos/irrfbenef/TIdeEmpregadorCnpj.java | 2 +- .../irrfbenef/TIdeEmpregadorExclusao.java | 2 +- .../eventos/irrfbenef/TIdeEventoEvtTab.java | 2 +- .../irrfbenef/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/irrfbenef/TIdeEventoExclusao.java | 2 +- .../irrfbenef/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/irrfbenef/TIdeEventoFolha.java | 2 +- .../irrfbenef/TIdeEventoFolhaMensal.java | 2 +- .../irrfbenef/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/irrfbenef/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../irrfbenef/TIdeEventoRetornoContrib.java | 2 +- .../irrfbenef/TIdeEventoRetornoMensal.java | 2 +- .../irrfbenef/TIdeEventoRetornoTrab.java | 2 +- .../eventos/irrfbenef/TIdeEventoTrab.java | 2 +- .../irrfbenef/TIdeEventoTrabAdmissao.java | 2 +- .../irrfbenef/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/irrfbenef/TIdeEventoTrabJud.java | 2 +- .../eventos/irrfbenef/TIdeEventoTrabPJ.java | 2 +- .../eventos/irrfbenef/TIdeTrabSemVinculo.java | 2 +- .../eventos/irrfbenef/TIdeVinculo.java | 4 +- .../eventos/irrfbenef/TIdeVinculoBaixa.java | 4 +- .../eventos/irrfbenef/TIdeVinculoSst.java | 4 +- .../eventos/irrfbenef/TInfoEstagiario.java | 2 +- .../eventos/irrfbenef/TInfoInterm.java | 2 +- .../esquemas/eventos/irrfbenef/TInfoMV.java | 2 +- .../esquemas/eventos/irrfbenef/TInfoRRA.java | 2 +- .../eventos/irrfbenef/TInfoSimples.java | 2 +- .../eventos/irrfbenef/TItensRemunRpps.java | 2 +- .../eventos/irrfbenef/TLocalTrabGeral.java | 2 +- .../eventos/irrfbenef/TNascimento.java | 2 +- .../eventos/irrfbenef/TNovaValidade.java | 2 +- .../eventos/irrfbenef/TProcJudTrab.java | 2 +- .../eventos/irrfbenef/TRemuneracao.java | 2 +- .../esquemas/eventos/irrfbenef/TSSexo.java | 2 +- .../esquemas/eventos/irrfbenef/TSSim.java | 2 +- .../esquemas/eventos/irrfbenef/TSSimNao.java | 2 +- .../eventos/irrfbenef/TSTpAcConv.java | 11 +- .../eventos/irrfbenef/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/irrfbenef/TSUf.java | 2 +- .../eventos/irrfbenef/TSucessaoVinc.java | 4 +- .../esquemas/eventos/irrfbenef/TTreiCap.java | 2 +- .../eventos/irrfbenef/TransformType.java | 4 +- .../eventos/irrfbenef/TransformsType.java | 2 +- .../eventos/irrfbenef/X509DataType.java | 12 +- .../irrfbenef/X509IssuerSerialType.java | 2 +- .../eventos/irrfbenef/package-info.java | 2 +- .../monit/CanonicalizationMethodType.java | 2 +- .../eventos/monit/DSAKeyValueType.java | 2 +- .../eventos/monit/DigestMethodType.java | 4 +- .../esquemas/eventos/monit/ESocial.java | 2 +- .../esquemas/eventos/monit/KeyInfoType.java | 22 +- .../esquemas/eventos/monit/KeyValueType.java | 8 +- .../esquemas/eventos/monit/ManifestType.java | 2 +- .../esquemas/eventos/monit/ObjectFactory.java | 72 ++-- .../esquemas/eventos/monit/ObjectType.java | 4 +- .../esquemas/eventos/monit/PGPDataType.java | 10 +- .../eventos/monit/RSAKeyValueType.java | 2 +- .../esquemas/eventos/monit/ReferenceType.java | 2 +- .../eventos/monit/RetrievalMethodType.java | 2 +- .../esquemas/eventos/monit/SPKIDataType.java | 6 +- .../eventos/monit/SignatureMethodType.java | 2 +- .../monit/SignaturePropertiesType.java | 2 +- .../eventos/monit/SignaturePropertyType.java | 4 +- .../esquemas/eventos/monit/SignatureType.java | 2 +- .../eventos/monit/SignatureValueType.java | 2 +- .../eventos/monit/SignedInfoType.java | 2 +- .../eventos/monit/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/monit/TAprend.java | 2 +- .../esquemas/eventos/monit/TContato.java | 2 +- .../esquemas/eventos/monit/TDetReemb.java | 2 +- .../esquemas/eventos/monit/TDetReembTot.java | 2 +- .../eventos/monit/TEnderecoBrasil.java | 2 +- .../eventos/monit/TEnderecoExterior.java | 2 +- .../eventos/monit/THorContratual.java | 2 +- .../esquemas/eventos/monit/TIdeBeneficio.java | 2 +- .../eventos/monit/TIdeEmpregador.java | 2 +- .../eventos/monit/TIdeEmpregadorCnpj.java | 2 +- .../eventos/monit/TIdeEmpregadorExclusao.java | 2 +- .../eventos/monit/TIdeEventoEvtTab.java | 2 +- .../monit/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/monit/TIdeEventoExclusao.java | 2 +- .../monit/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/monit/TIdeEventoFolha.java | 2 +- .../eventos/monit/TIdeEventoFolhaMensal.java | 2 +- .../monit/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/monit/TIdeEventoFolhaOpp.java | 2 +- .../monit/TIdeEventoFolhaSemRetificacao.java | 2 +- .../monit/TIdeEventoRetornoContrib.java | 2 +- .../monit/TIdeEventoRetornoMensal.java | 2 +- .../eventos/monit/TIdeEventoRetornoTrab.java | 2 +- .../eventos/monit/TIdeEventoTrab.java | 2 +- .../eventos/monit/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/monit/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/monit/TIdeEventoTrabJud.java | 2 +- .../eventos/monit/TIdeEventoTrabPJ.java | 2 +- .../eventos/monit/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/monit/TIdeVinculo.java | 4 +- .../eventos/monit/TIdeVinculoBaixa.java | 4 +- .../eventos/monit/TIdeVinculoSst.java | 4 +- .../eventos/monit/TInfoEstagiario.java | 2 +- .../esquemas/eventos/monit/TInfoInterm.java | 2 +- .../esquemas/eventos/monit/TInfoMV.java | 2 +- .../esquemas/eventos/monit/TInfoRRA.java | 2 +- .../esquemas/eventos/monit/TInfoSimples.java | 2 +- .../eventos/monit/TItensRemunRpps.java | 2 +- .../eventos/monit/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/monit/TNascimento.java | 2 +- .../esquemas/eventos/monit/TNovaValidade.java | 2 +- .../esquemas/eventos/monit/TProcJudTrab.java | 2 +- .../esquemas/eventos/monit/TRemuneracao.java | 2 +- .../esquemas/eventos/monit/TSSexo.java | 2 +- .../esocial/esquemas/eventos/monit/TSSim.java | 2 +- .../esquemas/eventos/monit/TSSimNao.java | 2 +- .../esquemas/eventos/monit/TSTpAcConv.java | 11 +- .../eventos/monit/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/monit/TSUf.java | 2 +- .../esquemas/eventos/monit/TSucessaoVinc.java | 4 +- .../esquemas/eventos/monit/TTreiCap.java | 2 +- .../esquemas/eventos/monit/TransformType.java | 4 +- .../eventos/monit/TransformsType.java | 2 +- .../esquemas/eventos/monit/X509DataType.java | 14 +- .../eventos/monit/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/monit/package-info.java | 2 +- .../pgtos/CanonicalizationMethodType.java | 2 +- .../eventos/pgtos/DSAKeyValueType.java | 2 +- .../eventos/pgtos/DigestMethodType.java | 4 +- .../esquemas/eventos/pgtos/ESocial.java | 2 +- .../esquemas/eventos/pgtos/KeyInfoType.java | 22 +- .../esquemas/eventos/pgtos/KeyValueType.java | 10 +- .../esquemas/eventos/pgtos/ManifestType.java | 2 +- .../esquemas/eventos/pgtos/ObjectFactory.java | 86 ++--- .../esquemas/eventos/pgtos/ObjectType.java | 4 +- .../esquemas/eventos/pgtos/PGPDataType.java | 10 +- .../eventos/pgtos/RSAKeyValueType.java | 2 +- .../esquemas/eventos/pgtos/ReferenceType.java | 2 +- .../eventos/pgtos/RetrievalMethodType.java | 2 +- .../esquemas/eventos/pgtos/SPKIDataType.java | 4 +- .../eventos/pgtos/SignatureMethodType.java | 2 +- .../pgtos/SignaturePropertiesType.java | 2 +- .../eventos/pgtos/SignaturePropertyType.java | 4 +- .../esquemas/eventos/pgtos/SignatureType.java | 2 +- .../eventos/pgtos/SignatureValueType.java | 2 +- .../eventos/pgtos/SignedInfoType.java | 2 +- .../eventos/pgtos/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/pgtos/TAprend.java | 2 +- .../esquemas/eventos/pgtos/TContato.java | 2 +- .../esquemas/eventos/pgtos/TDetReemb.java | 2 +- .../esquemas/eventos/pgtos/TDetReembTot.java | 2 +- .../eventos/pgtos/TEnderecoBrasil.java | 2 +- .../eventos/pgtos/TEnderecoExterior.java | 2 +- .../eventos/pgtos/THorContratual.java | 2 +- .../esquemas/eventos/pgtos/TIdeBeneficio.java | 2 +- .../eventos/pgtos/TIdeEmpregador.java | 2 +- .../eventos/pgtos/TIdeEmpregadorCnpj.java | 2 +- .../eventos/pgtos/TIdeEmpregadorExclusao.java | 2 +- .../eventos/pgtos/TIdeEventoEvtTab.java | 2 +- .../pgtos/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/pgtos/TIdeEventoExclusao.java | 2 +- .../pgtos/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/pgtos/TIdeEventoFolha.java | 2 +- .../eventos/pgtos/TIdeEventoFolhaMensal.java | 2 +- .../pgtos/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/pgtos/TIdeEventoFolhaOpp.java | 2 +- .../pgtos/TIdeEventoFolhaSemRetificacao.java | 2 +- .../pgtos/TIdeEventoRetornoContrib.java | 2 +- .../pgtos/TIdeEventoRetornoMensal.java | 2 +- .../eventos/pgtos/TIdeEventoRetornoTrab.java | 2 +- .../eventos/pgtos/TIdeEventoTrab.java | 2 +- .../eventos/pgtos/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/pgtos/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/pgtos/TIdeEventoTrabJud.java | 2 +- .../eventos/pgtos/TIdeEventoTrabPJ.java | 2 +- .../eventos/pgtos/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/pgtos/TIdeVinculo.java | 4 +- .../eventos/pgtos/TIdeVinculoBaixa.java | 4 +- .../eventos/pgtos/TIdeVinculoSst.java | 4 +- .../eventos/pgtos/TInfoEstagiario.java | 2 +- .../esquemas/eventos/pgtos/TInfoInterm.java | 2 +- .../esquemas/eventos/pgtos/TInfoMV.java | 2 +- .../esquemas/eventos/pgtos/TInfoRRA.java | 2 +- .../esquemas/eventos/pgtos/TInfoSimples.java | 2 +- .../eventos/pgtos/TItensRemunRpps.java | 2 +- .../eventos/pgtos/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/pgtos/TNascimento.java | 2 +- .../esquemas/eventos/pgtos/TNovaValidade.java | 2 +- .../esquemas/eventos/pgtos/TProcJudTrab.java | 2 +- .../esquemas/eventos/pgtos/TRemuneracao.java | 2 +- .../esquemas/eventos/pgtos/TSSexo.java | 2 +- .../esocial/esquemas/eventos/pgtos/TSSim.java | 2 +- .../esquemas/eventos/pgtos/TSSimNao.java | 2 +- .../esquemas/eventos/pgtos/TSTpAcConv.java | 11 +- .../eventos/pgtos/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/pgtos/TSUf.java | 2 +- .../esquemas/eventos/pgtos/TSucessaoVinc.java | 4 +- .../esquemas/eventos/pgtos/TTreiCap.java | 2 +- .../esquemas/eventos/pgtos/TransformType.java | 4 +- .../eventos/pgtos/TransformsType.java | 2 +- .../esquemas/eventos/pgtos/X509DataType.java | 18 +- .../eventos/pgtos/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/pgtos/package-info.java | 2 +- .../proctrab/CanonicalizationMethodType.java | 2 +- .../eventos/proctrab/DSAKeyValueType.java | 2 +- .../eventos/proctrab/DigestMethodType.java | 2 +- .../esquemas/eventos/proctrab/ESocial.java | 107 ++++-- .../eventos/proctrab/KeyInfoType.java | 18 +- .../eventos/proctrab/KeyValueType.java | 10 +- .../eventos/proctrab/ManifestType.java | 2 +- .../eventos/proctrab/ObjectFactory.java | 82 ++--- .../esquemas/eventos/proctrab/ObjectType.java | 2 +- .../eventos/proctrab/PGPDataType.java | 12 +- .../eventos/proctrab/RSAKeyValueType.java | 2 +- .../eventos/proctrab/ReferenceType.java | 2 +- .../eventos/proctrab/RetrievalMethodType.java | 2 +- .../eventos/proctrab/SPKIDataType.java | 4 +- .../eventos/proctrab/SignatureMethodType.java | 2 +- .../proctrab/SignaturePropertiesType.java | 2 +- .../proctrab/SignaturePropertyType.java | 2 +- .../eventos/proctrab/SignatureType.java | 2 +- .../eventos/proctrab/SignatureValueType.java | 2 +- .../eventos/proctrab/SignedInfoType.java | 2 +- .../eventos/proctrab/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/proctrab/TAprend.java | 2 +- .../esquemas/eventos/proctrab/TContato.java | 2 +- .../esquemas/eventos/proctrab/TDetReemb.java | 2 +- .../eventos/proctrab/TDetReembTot.java | 2 +- .../eventos/proctrab/TEnderecoBrasil.java | 2 +- .../eventos/proctrab/TEnderecoExterior.java | 2 +- .../eventos/proctrab/THorContratual.java | 2 +- .../eventos/proctrab/TIdeBeneficio.java | 2 +- .../eventos/proctrab/TIdeEmpregador.java | 2 +- .../eventos/proctrab/TIdeEmpregadorCnpj.java | 2 +- .../proctrab/TIdeEmpregadorExclusao.java | 2 +- .../eventos/proctrab/TIdeEventoEvtTab.java | 2 +- .../proctrab/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/proctrab/TIdeEventoExclusao.java | 2 +- .../proctrab/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/proctrab/TIdeEventoFolha.java | 2 +- .../proctrab/TIdeEventoFolhaMensal.java | 2 +- .../proctrab/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/proctrab/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../proctrab/TIdeEventoRetornoContrib.java | 2 +- .../proctrab/TIdeEventoRetornoMensal.java | 2 +- .../proctrab/TIdeEventoRetornoTrab.java | 2 +- .../eventos/proctrab/TIdeEventoTrab.java | 2 +- .../proctrab/TIdeEventoTrabAdmissao.java | 2 +- .../proctrab/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/proctrab/TIdeEventoTrabJud.java | 2 +- .../eventos/proctrab/TIdeEventoTrabPJ.java | 2 +- .../eventos/proctrab/TIdeTrabSemVinculo.java | 2 +- .../eventos/proctrab/TIdeVinculo.java | 4 +- .../eventos/proctrab/TIdeVinculoBaixa.java | 4 +- .../eventos/proctrab/TIdeVinculoSst.java | 4 +- .../eventos/proctrab/TInfoEstagiario.java | 2 +- .../eventos/proctrab/TInfoInterm.java | 2 +- .../esquemas/eventos/proctrab/TInfoMV.java | 2 +- .../esquemas/eventos/proctrab/TInfoRRA.java | 2 +- .../eventos/proctrab/TInfoSimples.java | 2 +- .../eventos/proctrab/TItensRemunRpps.java | 2 +- .../eventos/proctrab/TLocalTrabGeral.java | 2 +- .../eventos/proctrab/TNascimento.java | 2 +- .../eventos/proctrab/TNovaValidade.java | 2 +- .../eventos/proctrab/TProcJudTrab.java | 2 +- .../eventos/proctrab/TRemuneracao.java | 2 +- .../esquemas/eventos/proctrab/TSSexo.java | 2 +- .../esquemas/eventos/proctrab/TSSim.java | 2 +- .../esquemas/eventos/proctrab/TSSimNao.java | 2 +- .../esquemas/eventos/proctrab/TSTpAcConv.java | 11 +- .../eventos/proctrab/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/proctrab/TSUf.java | 2 +- .../eventos/proctrab/TSucessaoVinc.java | 4 +- .../esquemas/eventos/proctrab/TTreiCap.java | 2 +- .../eventos/proctrab/TransformType.java | 2 +- .../eventos/proctrab/TransformsType.java | 2 +- .../eventos/proctrab/X509DataType.java | 14 +- .../proctrab/X509IssuerSerialType.java | 2 +- .../eventos/proctrab/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/reabreevper/DSAKeyValueType.java | 2 +- .../eventos/reabreevper/DigestMethodType.java | 4 +- .../esquemas/eventos/reabreevper/ESocial.java | 2 +- .../eventos/reabreevper/KeyInfoType.java | 24 +- .../eventos/reabreevper/KeyValueType.java | 6 +- .../eventos/reabreevper/ManifestType.java | 2 +- .../eventos/reabreevper/ObjectFactory.java | 70 ++-- .../eventos/reabreevper/ObjectType.java | 4 +- .../eventos/reabreevper/PGPDataType.java | 10 +- .../eventos/reabreevper/RSAKeyValueType.java | 2 +- .../eventos/reabreevper/ReferenceType.java | 2 +- .../reabreevper/RetrievalMethodType.java | 2 +- .../eventos/reabreevper/SPKIDataType.java | 2 +- .../reabreevper/SignatureMethodType.java | 4 +- .../reabreevper/SignaturePropertiesType.java | 2 +- .../reabreevper/SignaturePropertyType.java | 4 +- .../eventos/reabreevper/SignatureType.java | 2 +- .../reabreevper/SignatureValueType.java | 2 +- .../eventos/reabreevper/SignedInfoType.java | 2 +- .../eventos/reabreevper/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/reabreevper/TAprend.java | 2 +- .../eventos/reabreevper/TContato.java | 2 +- .../eventos/reabreevper/TDetReemb.java | 2 +- .../eventos/reabreevper/TDetReembTot.java | 2 +- .../eventos/reabreevper/TEnderecoBrasil.java | 2 +- .../reabreevper/TEnderecoExterior.java | 2 +- .../eventos/reabreevper/THorContratual.java | 2 +- .../eventos/reabreevper/TIdeBeneficio.java | 2 +- .../eventos/reabreevper/TIdeEmpregador.java | 2 +- .../reabreevper/TIdeEmpregadorCnpj.java | 2 +- .../reabreevper/TIdeEmpregadorExclusao.java | 2 +- .../eventos/reabreevper/TIdeEventoEvtTab.java | 2 +- .../reabreevper/TIdeEventoEvtTabInicial.java | 2 +- .../reabreevper/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/reabreevper/TIdeEventoFolha.java | 2 +- .../reabreevper/TIdeEventoFolhaMensal.java | 2 +- .../reabreevper/TIdeEventoFolhaMensalPF.java | 2 +- .../reabreevper/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../reabreevper/TIdeEventoRetornoContrib.java | 2 +- .../reabreevper/TIdeEventoRetornoMensal.java | 2 +- .../reabreevper/TIdeEventoRetornoTrab.java | 2 +- .../eventos/reabreevper/TIdeEventoTrab.java | 2 +- .../reabreevper/TIdeEventoTrabAdmissao.java | 2 +- .../reabreevper/TIdeEventoTrabIndGuia.java | 2 +- .../reabreevper/TIdeEventoTrabJud.java | 2 +- .../eventos/reabreevper/TIdeEventoTrabPJ.java | 2 +- .../reabreevper/TIdeTrabSemVinculo.java | 2 +- .../eventos/reabreevper/TIdeVinculo.java | 4 +- .../eventos/reabreevper/TIdeVinculoBaixa.java | 4 +- .../eventos/reabreevper/TIdeVinculoSst.java | 4 +- .../eventos/reabreevper/TInfoEstagiario.java | 2 +- .../eventos/reabreevper/TInfoInterm.java | 2 +- .../esquemas/eventos/reabreevper/TInfoMV.java | 2 +- .../eventos/reabreevper/TInfoRRA.java | 2 +- .../eventos/reabreevper/TInfoSimples.java | 2 +- .../eventos/reabreevper/TItensRemunRpps.java | 2 +- .../eventos/reabreevper/TLocalTrabGeral.java | 2 +- .../eventos/reabreevper/TNascimento.java | 2 +- .../eventos/reabreevper/TNovaValidade.java | 2 +- .../eventos/reabreevper/TProcJudTrab.java | 2 +- .../eventos/reabreevper/TRemuneracao.java | 2 +- .../esquemas/eventos/reabreevper/TSSexo.java | 2 +- .../esquemas/eventos/reabreevper/TSSim.java | 2 +- .../eventos/reabreevper/TSSimNao.java | 2 +- .../eventos/reabreevper/TSTpAcConv.java | 11 +- .../eventos/reabreevper/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/reabreevper/TSUf.java | 2 +- .../eventos/reabreevper/TSucessaoVinc.java | 4 +- .../eventos/reabreevper/TTreiCap.java | 2 +- .../eventos/reabreevper/TransformType.java | 4 +- .../eventos/reabreevper/TransformsType.java | 2 +- .../eventos/reabreevper/X509DataType.java | 16 +- .../reabreevper/X509IssuerSerialType.java | 2 +- .../eventos/reabreevper/package-info.java | 2 +- .../reativben/CanonicalizationMethodType.java | 2 +- .../eventos/reativben/DSAKeyValueType.java | 2 +- .../eventos/reativben/DigestMethodType.java | 4 +- .../esquemas/eventos/reativben/ESocial.java | 2 +- .../eventos/reativben/KeyInfoType.java | 24 +- .../eventos/reativben/KeyValueType.java | 8 +- .../eventos/reativben/ManifestType.java | 2 +- .../eventos/reativben/ObjectFactory.java | 42 +-- .../eventos/reativben/ObjectType.java | 4 +- .../eventos/reativben/PGPDataType.java | 12 +- .../eventos/reativben/RSAKeyValueType.java | 2 +- .../eventos/reativben/ReferenceType.java | 2 +- .../reativben/RetrievalMethodType.java | 2 +- .../eventos/reativben/SPKIDataType.java | 4 +- .../reativben/SignatureMethodType.java | 2 +- .../reativben/SignaturePropertiesType.java | 2 +- .../reativben/SignaturePropertyType.java | 4 +- .../eventos/reativben/SignatureType.java | 2 +- .../eventos/reativben/SignatureValueType.java | 2 +- .../eventos/reativben/SignedInfoType.java | 2 +- .../eventos/reativben/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/reativben/TAprend.java | 2 +- .../esquemas/eventos/reativben/TContato.java | 2 +- .../esquemas/eventos/reativben/TDetReemb.java | 2 +- .../eventos/reativben/TDetReembTot.java | 2 +- .../eventos/reativben/TEnderecoBrasil.java | 2 +- .../eventos/reativben/TEnderecoExterior.java | 2 +- .../eventos/reativben/THorContratual.java | 2 +- .../eventos/reativben/TIdeBeneficio.java | 2 +- .../eventos/reativben/TIdeEmpregador.java | 2 +- .../eventos/reativben/TIdeEmpregadorCnpj.java | 2 +- .../reativben/TIdeEmpregadorExclusao.java | 2 +- .../eventos/reativben/TIdeEventoEvtTab.java | 2 +- .../reativben/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/reativben/TIdeEventoExclusao.java | 2 +- .../reativben/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/reativben/TIdeEventoFolha.java | 2 +- .../reativben/TIdeEventoFolhaMensal.java | 2 +- .../reativben/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/reativben/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../reativben/TIdeEventoRetornoContrib.java | 2 +- .../reativben/TIdeEventoRetornoMensal.java | 2 +- .../reativben/TIdeEventoRetornoTrab.java | 2 +- .../eventos/reativben/TIdeEventoTrab.java | 2 +- .../reativben/TIdeEventoTrabAdmissao.java | 2 +- .../reativben/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/reativben/TIdeEventoTrabJud.java | 2 +- .../eventos/reativben/TIdeEventoTrabPJ.java | 2 +- .../eventos/reativben/TIdeTrabSemVinculo.java | 2 +- .../eventos/reativben/TIdeVinculo.java | 4 +- .../eventos/reativben/TIdeVinculoBaixa.java | 4 +- .../eventos/reativben/TIdeVinculoSst.java | 4 +- .../eventos/reativben/TInfoEstagiario.java | 2 +- .../eventos/reativben/TInfoInterm.java | 2 +- .../esquemas/eventos/reativben/TInfoMV.java | 2 +- .../esquemas/eventos/reativben/TInfoRRA.java | 2 +- .../eventos/reativben/TInfoSimples.java | 2 +- .../eventos/reativben/TItensRemunRpps.java | 2 +- .../eventos/reativben/TLocalTrabGeral.java | 2 +- .../eventos/reativben/TNascimento.java | 2 +- .../eventos/reativben/TNovaValidade.java | 2 +- .../eventos/reativben/TProcJudTrab.java | 2 +- .../eventos/reativben/TRemuneracao.java | 2 +- .../esquemas/eventos/reativben/TSSexo.java | 2 +- .../esquemas/eventos/reativben/TSSim.java | 2 +- .../esquemas/eventos/reativben/TSSimNao.java | 2 +- .../eventos/reativben/TSTpAcConv.java | 11 +- .../eventos/reativben/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/reativben/TSUf.java | 2 +- .../eventos/reativben/TSucessaoVinc.java | 4 +- .../esquemas/eventos/reativben/TTreiCap.java | 2 +- .../eventos/reativben/TransformType.java | 6 +- .../eventos/reativben/TransformsType.java | 2 +- .../eventos/reativben/X509DataType.java | 16 +- .../reativben/X509IssuerSerialType.java | 2 +- .../eventos/reativben/package-info.java | 2 +- .../reintegr/CanonicalizationMethodType.java | 2 +- .../eventos/reintegr/DSAKeyValueType.java | 2 +- .../eventos/reintegr/DigestMethodType.java | 4 +- .../esquemas/eventos/reintegr/ESocial.java | 2 +- .../eventos/reintegr/KeyInfoType.java | 20 +- .../eventos/reintegr/KeyValueType.java | 10 +- .../eventos/reintegr/ManifestType.java | 2 +- .../eventos/reintegr/ObjectFactory.java | 62 ++-- .../esquemas/eventos/reintegr/ObjectType.java | 4 +- .../eventos/reintegr/PGPDataType.java | 10 +- .../eventos/reintegr/RSAKeyValueType.java | 2 +- .../eventos/reintegr/ReferenceType.java | 2 +- .../eventos/reintegr/RetrievalMethodType.java | 2 +- .../eventos/reintegr/SPKIDataType.java | 4 +- .../eventos/reintegr/SignatureMethodType.java | 4 +- .../reintegr/SignaturePropertiesType.java | 2 +- .../reintegr/SignaturePropertyType.java | 4 +- .../eventos/reintegr/SignatureType.java | 2 +- .../eventos/reintegr/SignatureValueType.java | 2 +- .../eventos/reintegr/SignedInfoType.java | 2 +- .../eventos/reintegr/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/reintegr/TAprend.java | 2 +- .../esquemas/eventos/reintegr/TContato.java | 2 +- .../esquemas/eventos/reintegr/TDetReemb.java | 2 +- .../eventos/reintegr/TDetReembTot.java | 2 +- .../eventos/reintegr/TEnderecoBrasil.java | 2 +- .../eventos/reintegr/TEnderecoExterior.java | 2 +- .../eventos/reintegr/THorContratual.java | 2 +- .../eventos/reintegr/TIdeBeneficio.java | 2 +- .../eventos/reintegr/TIdeEmpregador.java | 2 +- .../eventos/reintegr/TIdeEmpregadorCnpj.java | 2 +- .../reintegr/TIdeEmpregadorExclusao.java | 2 +- .../eventos/reintegr/TIdeEventoEvtTab.java | 2 +- .../reintegr/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/reintegr/TIdeEventoExclusao.java | 2 +- .../reintegr/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/reintegr/TIdeEventoFolha.java | 2 +- .../reintegr/TIdeEventoFolhaMensal.java | 2 +- .../reintegr/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/reintegr/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../reintegr/TIdeEventoRetornoContrib.java | 2 +- .../reintegr/TIdeEventoRetornoMensal.java | 2 +- .../reintegr/TIdeEventoRetornoTrab.java | 2 +- .../eventos/reintegr/TIdeEventoTrab.java | 2 +- .../reintegr/TIdeEventoTrabAdmissao.java | 2 +- .../reintegr/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/reintegr/TIdeEventoTrabJud.java | 2 +- .../eventos/reintegr/TIdeEventoTrabPJ.java | 2 +- .../eventos/reintegr/TIdeTrabSemVinculo.java | 2 +- .../eventos/reintegr/TIdeVinculo.java | 4 +- .../eventos/reintegr/TIdeVinculoBaixa.java | 4 +- .../eventos/reintegr/TIdeVinculoSst.java | 4 +- .../eventos/reintegr/TInfoEstagiario.java | 2 +- .../eventos/reintegr/TInfoInterm.java | 2 +- .../esquemas/eventos/reintegr/TInfoMV.java | 2 +- .../esquemas/eventos/reintegr/TInfoRRA.java | 2 +- .../eventos/reintegr/TInfoSimples.java | 2 +- .../eventos/reintegr/TItensRemunRpps.java | 2 +- .../eventos/reintegr/TLocalTrabGeral.java | 2 +- .../eventos/reintegr/TNascimento.java | 2 +- .../eventos/reintegr/TNovaValidade.java | 2 +- .../eventos/reintegr/TProcJudTrab.java | 2 +- .../eventos/reintegr/TRemuneracao.java | 2 +- .../esquemas/eventos/reintegr/TSSexo.java | 2 +- .../esquemas/eventos/reintegr/TSSim.java | 2 +- .../esquemas/eventos/reintegr/TSSimNao.java | 2 +- .../esquemas/eventos/reintegr/TSTpAcConv.java | 11 +- .../eventos/reintegr/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/reintegr/TSUf.java | 2 +- .../eventos/reintegr/TSucessaoVinc.java | 4 +- .../esquemas/eventos/reintegr/TTreiCap.java | 2 +- .../eventos/reintegr/TransformType.java | 4 +- .../eventos/reintegr/TransformsType.java | 2 +- .../eventos/reintegr/X509DataType.java | 14 +- .../reintegr/X509IssuerSerialType.java | 2 +- .../eventos/reintegr/package-info.java | 2 +- .../remun/CanonicalizationMethodType.java | 4 +- .../eventos/remun/DSAKeyValueType.java | 2 +- .../eventos/remun/DigestMethodType.java | 6 +- .../esquemas/eventos/remun/ESocial.java | 30 +- .../esquemas/eventos/remun/KeyInfoType.java | 24 +- .../esquemas/eventos/remun/KeyValueType.java | 8 +- .../esquemas/eventos/remun/ManifestType.java | 2 +- .../esquemas/eventos/remun/ObjectFactory.java | 82 ++--- .../esquemas/eventos/remun/ObjectType.java | 6 +- .../esquemas/eventos/remun/PGPDataType.java | 14 +- .../eventos/remun/RSAKeyValueType.java | 2 +- .../esquemas/eventos/remun/ReferenceType.java | 2 +- .../eventos/remun/RetrievalMethodType.java | 2 +- .../esquemas/eventos/remun/SPKIDataType.java | 4 +- .../eventos/remun/SignatureMethodType.java | 4 +- .../remun/SignaturePropertiesType.java | 2 +- .../eventos/remun/SignaturePropertyType.java | 6 +- .../esquemas/eventos/remun/SignatureType.java | 2 +- .../eventos/remun/SignatureValueType.java | 2 +- .../eventos/remun/SignedInfoType.java | 2 +- .../eventos/remun/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/remun/TAprend.java | 2 +- .../esquemas/eventos/remun/TContato.java | 2 +- .../esquemas/eventos/remun/TDetReemb.java | 2 +- .../esquemas/eventos/remun/TDetReembTot.java | 2 +- .../eventos/remun/TEnderecoBrasil.java | 2 +- .../eventos/remun/TEnderecoExterior.java | 2 +- .../eventos/remun/THorContratual.java | 2 +- .../esquemas/eventos/remun/TIdeBeneficio.java | 2 +- .../eventos/remun/TIdeEmpregador.java | 2 +- .../eventos/remun/TIdeEmpregadorCnpj.java | 2 +- .../eventos/remun/TIdeEmpregadorExclusao.java | 2 +- .../eventos/remun/TIdeEventoEvtTab.java | 2 +- .../remun/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/remun/TIdeEventoExclusao.java | 2 +- .../remun/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/remun/TIdeEventoFolha.java | 2 +- .../eventos/remun/TIdeEventoFolhaMensal.java | 2 +- .../remun/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/remun/TIdeEventoFolhaOpp.java | 2 +- .../remun/TIdeEventoFolhaSemRetificacao.java | 2 +- .../remun/TIdeEventoRetornoContrib.java | 2 +- .../remun/TIdeEventoRetornoMensal.java | 2 +- .../eventos/remun/TIdeEventoRetornoTrab.java | 2 +- .../eventos/remun/TIdeEventoTrab.java | 2 +- .../eventos/remun/TIdeEventoTrabAdmissao.java | 2 +- .../eventos/remun/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/remun/TIdeEventoTrabJud.java | 2 +- .../eventos/remun/TIdeEventoTrabPJ.java | 2 +- .../eventos/remun/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/remun/TIdeVinculo.java | 4 +- .../eventos/remun/TIdeVinculoBaixa.java | 4 +- .../eventos/remun/TIdeVinculoSst.java | 4 +- .../esquemas/eventos/remun/TInfoAgNocivo.java | 2 +- .../eventos/remun/TInfoEstagiario.java | 2 +- .../esquemas/eventos/remun/TInfoInterm.java | 2 +- .../esquemas/eventos/remun/TInfoMV.java | 2 +- .../esquemas/eventos/remun/TInfoRRA.java | 2 +- .../esquemas/eventos/remun/TInfoSimples.java | 2 +- .../esquemas/eventos/remun/TItensRemun.java | 2 +- .../eventos/remun/TItensRemunRpps.java | 2 +- .../eventos/remun/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/remun/TNascimento.java | 2 +- .../esquemas/eventos/remun/TNovaValidade.java | 2 +- .../esquemas/eventos/remun/TProcJudTrab.java | 2 +- .../esquemas/eventos/remun/TRemuneracao.java | 2 +- .../esquemas/eventos/remun/TSSexo.java | 2 +- .../esocial/esquemas/eventos/remun/TSSim.java | 2 +- .../esquemas/eventos/remun/TSSimNao.java | 2 +- .../esquemas/eventos/remun/TSTpAcConv.java | 11 +- .../eventos/remun/TSTpAcConvFGTS.java | 11 +- .../esocial/esquemas/eventos/remun/TSUf.java | 2 +- .../esquemas/eventos/remun/TSucessaoVinc.java | 4 +- .../esquemas/eventos/remun/TTreiCap.java | 2 +- .../esquemas/eventos/remun/TransformType.java | 8 +- .../eventos/remun/TransformsType.java | 2 +- .../esquemas/eventos/remun/X509DataType.java | 12 +- .../eventos/remun/X509IssuerSerialType.java | 2 +- .../esquemas/eventos/remun/package-info.java | 2 +- .../rmnrpps/CanonicalizationMethodType.java | 2 +- .../eventos/rmnrpps/DSAKeyValueType.java | 2 +- .../eventos/rmnrpps/DigestMethodType.java | 2 +- .../esquemas/eventos/rmnrpps/ESocial.java | 2 +- .../esquemas/eventos/rmnrpps/KeyInfoType.java | 22 +- .../eventos/rmnrpps/KeyValueType.java | 8 +- .../eventos/rmnrpps/ManifestType.java | 2 +- .../eventos/rmnrpps/ObjectFactory.java | 62 ++-- .../esquemas/eventos/rmnrpps/ObjectType.java | 2 +- .../esquemas/eventos/rmnrpps/PGPDataType.java | 14 +- .../eventos/rmnrpps/RSAKeyValueType.java | 2 +- .../eventos/rmnrpps/ReferenceType.java | 2 +- .../eventos/rmnrpps/RetrievalMethodType.java | 2 +- .../eventos/rmnrpps/SPKIDataType.java | 4 +- .../eventos/rmnrpps/SignatureMethodType.java | 2 +- .../rmnrpps/SignaturePropertiesType.java | 2 +- .../rmnrpps/SignaturePropertyType.java | 2 +- .../eventos/rmnrpps/SignatureType.java | 2 +- .../eventos/rmnrpps/SignatureValueType.java | 2 +- .../eventos/rmnrpps/SignedInfoType.java | 2 +- .../eventos/rmnrpps/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/rmnrpps/TAprend.java | 2 +- .../esquemas/eventos/rmnrpps/TContato.java | 2 +- .../esquemas/eventos/rmnrpps/TDetReemb.java | 2 +- .../eventos/rmnrpps/TDetReembTot.java | 2 +- .../eventos/rmnrpps/TEnderecoBrasil.java | 2 +- .../eventos/rmnrpps/TEnderecoExterior.java | 2 +- .../eventos/rmnrpps/THorContratual.java | 2 +- .../eventos/rmnrpps/TIdeBeneficio.java | 2 +- .../eventos/rmnrpps/TIdeEmpregador.java | 2 +- .../eventos/rmnrpps/TIdeEmpregadorCnpj.java | 2 +- .../rmnrpps/TIdeEmpregadorExclusao.java | 2 +- .../eventos/rmnrpps/TIdeEventoEvtTab.java | 2 +- .../rmnrpps/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/rmnrpps/TIdeEventoExclusao.java | 2 +- .../rmnrpps/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/rmnrpps/TIdeEventoFolha.java | 2 +- .../rmnrpps/TIdeEventoFolhaMensal.java | 2 +- .../rmnrpps/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/rmnrpps/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../rmnrpps/TIdeEventoRetornoContrib.java | 2 +- .../rmnrpps/TIdeEventoRetornoMensal.java | 2 +- .../rmnrpps/TIdeEventoRetornoTrab.java | 2 +- .../eventos/rmnrpps/TIdeEventoTrab.java | 2 +- .../rmnrpps/TIdeEventoTrabAdmissao.java | 2 +- .../rmnrpps/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/rmnrpps/TIdeEventoTrabJud.java | 2 +- .../eventos/rmnrpps/TIdeEventoTrabPJ.java | 2 +- .../eventos/rmnrpps/TIdeTrabSemVinculo.java | 2 +- .../esquemas/eventos/rmnrpps/TIdeVinculo.java | 4 +- .../eventos/rmnrpps/TIdeVinculoBaixa.java | 4 +- .../eventos/rmnrpps/TIdeVinculoSst.java | 4 +- .../eventos/rmnrpps/TInfoEstagiario.java | 2 +- .../esquemas/eventos/rmnrpps/TInfoInterm.java | 2 +- .../esquemas/eventos/rmnrpps/TInfoMV.java | 2 +- .../esquemas/eventos/rmnrpps/TInfoRRA.java | 2 +- .../eventos/rmnrpps/TInfoSimples.java | 2 +- .../eventos/rmnrpps/TItensRemunRpps.java | 2 +- .../eventos/rmnrpps/TLocalTrabGeral.java | 2 +- .../esquemas/eventos/rmnrpps/TNascimento.java | 2 +- .../eventos/rmnrpps/TNovaValidade.java | 2 +- .../eventos/rmnrpps/TProcJudTrab.java | 2 +- .../esquemas/eventos/rmnrpps/TRemunPer.java | 4 +- .../eventos/rmnrpps/TRemuneracao.java | 2 +- .../esquemas/eventos/rmnrpps/TSSexo.java | 2 +- .../esquemas/eventos/rmnrpps/TSSim.java | 2 +- .../esquemas/eventos/rmnrpps/TSSimNao.java | 2 +- .../esquemas/eventos/rmnrpps/TSTpAcConv.java | 11 +- .../eventos/rmnrpps/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/rmnrpps/TSUf.java | 2 +- .../eventos/rmnrpps/TSucessaoVinc.java | 4 +- .../esquemas/eventos/rmnrpps/TTreiCap.java | 2 +- .../eventos/rmnrpps/TransformType.java | 6 +- .../eventos/rmnrpps/TransformsType.java | 2 +- .../eventos/rmnrpps/X509DataType.java | 14 +- .../eventos/rmnrpps/X509IssuerSerialType.java | 2 +- .../eventos/rmnrpps/package-info.java | 2 +- .../tabestab/CanonicalizationMethodType.java | 2 +- .../eventos/tabestab/DSAKeyValueType.java | 2 +- .../eventos/tabestab/DigestMethodType.java | 2 +- .../esquemas/eventos/tabestab/ESocial.java | 2 +- .../eventos/tabestab/KeyInfoType.java | 22 +- .../eventos/tabestab/KeyValueType.java | 10 +- .../eventos/tabestab/ManifestType.java | 2 +- .../eventos/tabestab/ObjectFactory.java | 42 +-- .../esquemas/eventos/tabestab/ObjectType.java | 2 +- .../eventos/tabestab/PGPDataType.java | 12 +- .../eventos/tabestab/RSAKeyValueType.java | 2 +- .../eventos/tabestab/ReferenceType.java | 2 +- .../eventos/tabestab/RetrievalMethodType.java | 2 +- .../eventos/tabestab/SPKIDataType.java | 4 +- .../eventos/tabestab/SignatureMethodType.java | 2 +- .../tabestab/SignaturePropertiesType.java | 2 +- .../tabestab/SignaturePropertyType.java | 2 +- .../eventos/tabestab/SignatureType.java | 2 +- .../eventos/tabestab/SignatureValueType.java | 2 +- .../eventos/tabestab/SignedInfoType.java | 2 +- .../eventos/tabestab/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/tabestab/TAprend.java | 2 +- .../esquemas/eventos/tabestab/TContato.java | 2 +- .../eventos/tabestab/TDadosEstab.java | 2 +- .../esquemas/eventos/tabestab/TDetReemb.java | 2 +- .../eventos/tabestab/TDetReembTot.java | 2 +- .../eventos/tabestab/TEnderecoBrasil.java | 2 +- .../eventos/tabestab/TEnderecoExterior.java | 2 +- .../eventos/tabestab/THorContratual.java | 2 +- .../eventos/tabestab/TIdeBeneficio.java | 2 +- .../eventos/tabestab/TIdeEmpregador.java | 2 +- .../eventos/tabestab/TIdeEmpregadorCnpj.java | 2 +- .../tabestab/TIdeEmpregadorExclusao.java | 2 +- .../esquemas/eventos/tabestab/TIdeEstab.java | 2 +- .../eventos/tabestab/TIdeEventoEvtTab.java | 2 +- .../tabestab/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/tabestab/TIdeEventoExclusao.java | 2 +- .../tabestab/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tabestab/TIdeEventoFolha.java | 2 +- .../tabestab/TIdeEventoFolhaMensal.java | 2 +- .../tabestab/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/tabestab/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../tabestab/TIdeEventoRetornoContrib.java | 2 +- .../tabestab/TIdeEventoRetornoMensal.java | 2 +- .../tabestab/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tabestab/TIdeEventoTrab.java | 2 +- .../tabestab/TIdeEventoTrabAdmissao.java | 2 +- .../tabestab/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/tabestab/TIdeEventoTrabJud.java | 2 +- .../eventos/tabestab/TIdeEventoTrabPJ.java | 2 +- .../eventos/tabestab/TIdeTrabSemVinculo.java | 2 +- .../eventos/tabestab/TIdeVinculo.java | 4 +- .../eventos/tabestab/TIdeVinculoBaixa.java | 4 +- .../eventos/tabestab/TIdeVinculoSst.java | 4 +- .../eventos/tabestab/TInfoEstagiario.java | 2 +- .../eventos/tabestab/TInfoInterm.java | 2 +- .../esquemas/eventos/tabestab/TInfoMV.java | 2 +- .../esquemas/eventos/tabestab/TInfoRRA.java | 2 +- .../eventos/tabestab/TInfoSimples.java | 2 +- .../eventos/tabestab/TItensRemunRpps.java | 2 +- .../eventos/tabestab/TLocalTrabGeral.java | 2 +- .../eventos/tabestab/TNascimento.java | 2 +- .../eventos/tabestab/TNovaValidade.java | 2 +- .../eventos/tabestab/TProcJudTrab.java | 2 +- .../eventos/tabestab/TRemuneracao.java | 2 +- .../esquemas/eventos/tabestab/TSSexo.java | 2 +- .../esquemas/eventos/tabestab/TSSim.java | 2 +- .../esquemas/eventos/tabestab/TSSimNao.java | 2 +- .../esquemas/eventos/tabestab/TSTpAcConv.java | 11 +- .../eventos/tabestab/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tabestab/TSUf.java | 2 +- .../eventos/tabestab/TSucessaoVinc.java | 4 +- .../esquemas/eventos/tabestab/TTreiCap.java | 2 +- .../eventos/tabestab/TransformType.java | 4 +- .../eventos/tabestab/TransformsType.java | 2 +- .../eventos/tabestab/X509DataType.java | 12 +- .../tabestab/X509IssuerSerialType.java | 2 +- .../eventos/tabestab/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/tablotacao/DSAKeyValueType.java | 2 +- .../eventos/tablotacao/DigestMethodType.java | 4 +- .../esquemas/eventos/tablotacao/ESocial.java | 2 +- .../eventos/tablotacao/KeyInfoType.java | 18 +- .../eventos/tablotacao/KeyValueType.java | 6 +- .../eventos/tablotacao/ManifestType.java | 2 +- .../eventos/tablotacao/ObjectFactory.java | 22 +- .../eventos/tablotacao/ObjectType.java | 4 +- .../eventos/tablotacao/PGPDataType.java | 12 +- .../eventos/tablotacao/RSAKeyValueType.java | 2 +- .../eventos/tablotacao/ReferenceType.java | 2 +- .../tablotacao/RetrievalMethodType.java | 2 +- .../eventos/tablotacao/SPKIDataType.java | 6 +- .../tablotacao/SignatureMethodType.java | 4 +- .../tablotacao/SignaturePropertiesType.java | 2 +- .../tablotacao/SignaturePropertyType.java | 4 +- .../eventos/tablotacao/SignatureType.java | 2 +- .../tablotacao/SignatureValueType.java | 2 +- .../eventos/tablotacao/SignedInfoType.java | 2 +- .../eventos/tablotacao/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/tablotacao/TAprend.java | 2 +- .../esquemas/eventos/tablotacao/TContato.java | 2 +- .../eventos/tablotacao/TDadosLotacao.java | 2 +- .../eventos/tablotacao/TDetReemb.java | 2 +- .../eventos/tablotacao/TDetReembTot.java | 2 +- .../eventos/tablotacao/TEnderecoBrasil.java | 2 +- .../eventos/tablotacao/TEnderecoExterior.java | 2 +- .../eventos/tablotacao/THorContratual.java | 2 +- .../eventos/tablotacao/TIdeBeneficio.java | 2 +- .../eventos/tablotacao/TIdeEmpregador.java | 2 +- .../tablotacao/TIdeEmpregadorCnpj.java | 2 +- .../tablotacao/TIdeEmpregadorExclusao.java | 2 +- .../eventos/tablotacao/TIdeEventoEvtTab.java | 2 +- .../tablotacao/TIdeEventoEvtTabInicial.java | 2 +- .../tablotacao/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tablotacao/TIdeEventoFolha.java | 2 +- .../tablotacao/TIdeEventoFolhaMensal.java | 2 +- .../tablotacao/TIdeEventoFolhaMensalPF.java | 2 +- .../tablotacao/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../tablotacao/TIdeEventoRetornoContrib.java | 2 +- .../tablotacao/TIdeEventoRetornoMensal.java | 2 +- .../tablotacao/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tablotacao/TIdeEventoTrab.java | 2 +- .../tablotacao/TIdeEventoTrabAdmissao.java | 2 +- .../tablotacao/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/tablotacao/TIdeEventoTrabJud.java | 2 +- .../eventos/tablotacao/TIdeEventoTrabPJ.java | 2 +- .../eventos/tablotacao/TIdeLotacao.java | 2 +- .../tablotacao/TIdeTrabSemVinculo.java | 2 +- .../eventos/tablotacao/TIdeVinculo.java | 4 +- .../eventos/tablotacao/TIdeVinculoBaixa.java | 4 +- .../eventos/tablotacao/TIdeVinculoSst.java | 4 +- .../eventos/tablotacao/TInfoEstagiario.java | 2 +- .../eventos/tablotacao/TInfoInterm.java | 2 +- .../esquemas/eventos/tablotacao/TInfoMV.java | 2 +- .../esquemas/eventos/tablotacao/TInfoRRA.java | 2 +- .../eventos/tablotacao/TInfoSimples.java | 2 +- .../eventos/tablotacao/TItensRemunRpps.java | 2 +- .../eventos/tablotacao/TLocalTrabGeral.java | 2 +- .../eventos/tablotacao/TNascimento.java | 2 +- .../eventos/tablotacao/TNovaValidade.java | 2 +- .../eventos/tablotacao/TProcJudTrab.java | 2 +- .../eventos/tablotacao/TRemuneracao.java | 2 +- .../esquemas/eventos/tablotacao/TSSexo.java | 2 +- .../esquemas/eventos/tablotacao/TSSim.java | 2 +- .../esquemas/eventos/tablotacao/TSSimNao.java | 2 +- .../eventos/tablotacao/TSTpAcConv.java | 11 +- .../eventos/tablotacao/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tablotacao/TSUf.java | 2 +- .../eventos/tablotacao/TSucessaoVinc.java | 4 +- .../esquemas/eventos/tablotacao/TTreiCap.java | 2 +- .../eventos/tablotacao/TransformType.java | 4 +- .../eventos/tablotacao/TransformsType.java | 2 +- .../eventos/tablotacao/X509DataType.java | 16 +- .../tablotacao/X509IssuerSerialType.java | 2 +- .../eventos/tablotacao/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/tabprocesso/DSAKeyValueType.java | 2 +- .../eventos/tabprocesso/DigestMethodType.java | 4 +- .../esquemas/eventos/tabprocesso/ESocial.java | 2 +- .../eventos/tabprocesso/KeyInfoType.java | 18 +- .../eventos/tabprocesso/KeyValueType.java | 10 +- .../eventos/tabprocesso/ManifestType.java | 2 +- .../eventos/tabprocesso/ObjectFactory.java | 62 ++-- .../eventos/tabprocesso/ObjectType.java | 4 +- .../eventos/tabprocesso/PGPDataType.java | 10 +- .../eventos/tabprocesso/RSAKeyValueType.java | 2 +- .../eventos/tabprocesso/ReferenceType.java | 2 +- .../tabprocesso/RetrievalMethodType.java | 2 +- .../eventos/tabprocesso/SPKIDataType.java | 6 +- .../tabprocesso/SignatureMethodType.java | 4 +- .../tabprocesso/SignaturePropertiesType.java | 2 +- .../tabprocesso/SignaturePropertyType.java | 4 +- .../eventos/tabprocesso/SignatureType.java | 2 +- .../tabprocesso/SignatureValueType.java | 2 +- .../eventos/tabprocesso/SignedInfoType.java | 2 +- .../eventos/tabprocesso/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/tabprocesso/TAprend.java | 2 +- .../eventos/tabprocesso/TContato.java | 2 +- .../eventos/tabprocesso/TDadosProc.java | 2 +- .../eventos/tabprocesso/TDetReemb.java | 2 +- .../eventos/tabprocesso/TDetReembTot.java | 2 +- .../eventos/tabprocesso/TEnderecoBrasil.java | 2 +- .../tabprocesso/TEnderecoExterior.java | 2 +- .../eventos/tabprocesso/THorContratual.java | 2 +- .../eventos/tabprocesso/TIdeBeneficio.java | 2 +- .../eventos/tabprocesso/TIdeEmpregador.java | 2 +- .../tabprocesso/TIdeEmpregadorCnpj.java | 2 +- .../tabprocesso/TIdeEmpregadorExclusao.java | 2 +- .../eventos/tabprocesso/TIdeEventoEvtTab.java | 2 +- .../tabprocesso/TIdeEventoEvtTabInicial.java | 2 +- .../tabprocesso/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tabprocesso/TIdeEventoFolha.java | 2 +- .../tabprocesso/TIdeEventoFolhaMensal.java | 2 +- .../tabprocesso/TIdeEventoFolhaMensalPF.java | 2 +- .../tabprocesso/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../tabprocesso/TIdeEventoRetornoContrib.java | 2 +- .../tabprocesso/TIdeEventoRetornoMensal.java | 2 +- .../tabprocesso/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tabprocesso/TIdeEventoTrab.java | 2 +- .../tabprocesso/TIdeEventoTrabAdmissao.java | 2 +- .../tabprocesso/TIdeEventoTrabIndGuia.java | 2 +- .../tabprocesso/TIdeEventoTrabJud.java | 2 +- .../eventos/tabprocesso/TIdeEventoTrabPJ.java | 2 +- .../eventos/tabprocesso/TIdeProcesso.java | 2 +- .../tabprocesso/TIdeTrabSemVinculo.java | 2 +- .../eventos/tabprocesso/TIdeVinculo.java | 4 +- .../eventos/tabprocesso/TIdeVinculoBaixa.java | 4 +- .../eventos/tabprocesso/TIdeVinculoSst.java | 4 +- .../eventos/tabprocesso/TInfoEstagiario.java | 2 +- .../eventos/tabprocesso/TInfoInterm.java | 2 +- .../esquemas/eventos/tabprocesso/TInfoMV.java | 2 +- .../eventos/tabprocesso/TInfoRRA.java | 2 +- .../eventos/tabprocesso/TInfoSimples.java | 2 +- .../eventos/tabprocesso/TItensRemunRpps.java | 2 +- .../eventos/tabprocesso/TLocalTrabGeral.java | 2 +- .../eventos/tabprocesso/TNascimento.java | 2 +- .../eventos/tabprocesso/TNovaValidade.java | 2 +- .../eventos/tabprocesso/TProcJudTrab.java | 2 +- .../eventos/tabprocesso/TRemuneracao.java | 2 +- .../esquemas/eventos/tabprocesso/TSSexo.java | 2 +- .../esquemas/eventos/tabprocesso/TSSim.java | 2 +- .../eventos/tabprocesso/TSSimNao.java | 2 +- .../eventos/tabprocesso/TSTpAcConv.java | 11 +- .../eventos/tabprocesso/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tabprocesso/TSUf.java | 2 +- .../eventos/tabprocesso/TSucessaoVinc.java | 4 +- .../eventos/tabprocesso/TTreiCap.java | 2 +- .../eventos/tabprocesso/TransformType.java | 6 +- .../eventos/tabprocesso/TransformsType.java | 2 +- .../eventos/tabprocesso/X509DataType.java | 18 +- .../tabprocesso/X509IssuerSerialType.java | 2 +- .../eventos/tabprocesso/package-info.java | 2 +- .../CanonicalizationMethodType.java | 4 +- .../eventos/tabrubrica/DSAKeyValueType.java | 2 +- .../eventos/tabrubrica/DigestMethodType.java | 4 +- .../esquemas/eventos/tabrubrica/ESocial.java | 2 +- .../eventos/tabrubrica/KeyInfoType.java | 24 +- .../eventos/tabrubrica/KeyValueType.java | 10 +- .../eventos/tabrubrica/ManifestType.java | 2 +- .../eventos/tabrubrica/ObjectFactory.java | 40 +-- .../eventos/tabrubrica/ObjectType.java | 4 +- .../eventos/tabrubrica/PGPDataType.java | 14 +- .../eventos/tabrubrica/RSAKeyValueType.java | 2 +- .../eventos/tabrubrica/ReferenceType.java | 2 +- .../tabrubrica/RetrievalMethodType.java | 2 +- .../eventos/tabrubrica/SPKIDataType.java | 4 +- .../tabrubrica/SignatureMethodType.java | 4 +- .../tabrubrica/SignaturePropertiesType.java | 2 +- .../tabrubrica/SignaturePropertyType.java | 4 +- .../eventos/tabrubrica/SignatureType.java | 2 +- .../tabrubrica/SignatureValueType.java | 2 +- .../eventos/tabrubrica/SignedInfoType.java | 2 +- .../eventos/tabrubrica/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/tabrubrica/TAprend.java | 2 +- .../esquemas/eventos/tabrubrica/TContato.java | 2 +- .../eventos/tabrubrica/TDadosRubrica.java | 2 +- .../eventos/tabrubrica/TDetReemb.java | 2 +- .../eventos/tabrubrica/TDetReembTot.java | 2 +- .../eventos/tabrubrica/TEnderecoBrasil.java | 2 +- .../eventos/tabrubrica/TEnderecoExterior.java | 2 +- .../eventos/tabrubrica/THorContratual.java | 2 +- .../eventos/tabrubrica/TIdeBeneficio.java | 2 +- .../eventos/tabrubrica/TIdeEmpregador.java | 2 +- .../tabrubrica/TIdeEmpregadorCnpj.java | 2 +- .../tabrubrica/TIdeEmpregadorExclusao.java | 2 +- .../eventos/tabrubrica/TIdeEventoEvtTab.java | 2 +- .../tabrubrica/TIdeEventoEvtTabInicial.java | 2 +- .../tabrubrica/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tabrubrica/TIdeEventoFolha.java | 2 +- .../tabrubrica/TIdeEventoFolhaMensal.java | 2 +- .../tabrubrica/TIdeEventoFolhaMensalPF.java | 2 +- .../tabrubrica/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../tabrubrica/TIdeEventoRetornoContrib.java | 2 +- .../tabrubrica/TIdeEventoRetornoMensal.java | 2 +- .../tabrubrica/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tabrubrica/TIdeEventoTrab.java | 2 +- .../tabrubrica/TIdeEventoTrabAdmissao.java | 2 +- .../tabrubrica/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/tabrubrica/TIdeEventoTrabJud.java | 2 +- .../eventos/tabrubrica/TIdeEventoTrabPJ.java | 2 +- .../eventos/tabrubrica/TIdeRubrica.java | 2 +- .../tabrubrica/TIdeTrabSemVinculo.java | 2 +- .../eventos/tabrubrica/TIdeVinculo.java | 4 +- .../eventos/tabrubrica/TIdeVinculoBaixa.java | 4 +- .../eventos/tabrubrica/TIdeVinculoSst.java | 4 +- .../eventos/tabrubrica/TInfoEstagiario.java | 2 +- .../eventos/tabrubrica/TInfoInterm.java | 2 +- .../esquemas/eventos/tabrubrica/TInfoMV.java | 2 +- .../esquemas/eventos/tabrubrica/TInfoRRA.java | 2 +- .../eventos/tabrubrica/TInfoSimples.java | 2 +- .../eventos/tabrubrica/TItensRemunRpps.java | 2 +- .../eventos/tabrubrica/TLocalTrabGeral.java | 2 +- .../eventos/tabrubrica/TNascimento.java | 2 +- .../eventos/tabrubrica/TNovaValidade.java | 2 +- .../eventos/tabrubrica/TProcJudTrab.java | 2 +- .../eventos/tabrubrica/TRemuneracao.java | 2 +- .../esquemas/eventos/tabrubrica/TSSexo.java | 2 +- .../esquemas/eventos/tabrubrica/TSSim.java | 2 +- .../esquemas/eventos/tabrubrica/TSSimNao.java | 2 +- .../eventos/tabrubrica/TSTpAcConv.java | 11 +- .../eventos/tabrubrica/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tabrubrica/TSUf.java | 2 +- .../eventos/tabrubrica/TSucessaoVinc.java | 4 +- .../esquemas/eventos/tabrubrica/TTreiCap.java | 2 +- .../eventos/tabrubrica/TransformType.java | 4 +- .../eventos/tabrubrica/TransformsType.java | 2 +- .../eventos/tabrubrica/X509DataType.java | 16 +- .../tabrubrica/X509IssuerSerialType.java | 2 +- .../eventos/tabrubrica/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/tribproctrab/DSAKeyValueType.java | 2 +- .../tribproctrab/DigestMethodType.java | 4 +- .../eventos/tribproctrab/ESocial.java | 6 +- .../eventos/tribproctrab/KeyInfoType.java | 20 +- .../eventos/tribproctrab/KeyValueType.java | 6 +- .../eventos/tribproctrab/ManifestType.java | 2 +- .../eventos/tribproctrab/ObjectFactory.java | 40 +-- .../eventos/tribproctrab/ObjectType.java | 4 +- .../eventos/tribproctrab/PGPDataType.java | 8 +- .../eventos/tribproctrab/RSAKeyValueType.java | 2 +- .../eventos/tribproctrab/ReferenceType.java | 2 +- .../tribproctrab/RetrievalMethodType.java | 2 +- .../eventos/tribproctrab/SPKIDataType.java | 6 +- .../tribproctrab/SignatureMethodType.java | 4 +- .../tribproctrab/SignaturePropertiesType.java | 2 +- .../tribproctrab/SignaturePropertyType.java | 4 +- .../eventos/tribproctrab/SignatureType.java | 2 +- .../tribproctrab/SignatureValueType.java | 2 +- .../eventos/tribproctrab/SignedInfoType.java | 2 +- .../eventos/tribproctrab/TAlvaraJudicial.java | 2 +- .../eventos/tribproctrab/TAprend.java | 2 +- .../eventos/tribproctrab/TContato.java | 2 +- .../eventos/tribproctrab/TDetReemb.java | 2 +- .../eventos/tribproctrab/TDetReembTot.java | 2 +- .../eventos/tribproctrab/TEnderecoBrasil.java | 2 +- .../tribproctrab/TEnderecoExterior.java | 2 +- .../eventos/tribproctrab/THorContratual.java | 2 +- .../eventos/tribproctrab/TIdeBeneficio.java | 2 +- .../eventos/tribproctrab/TIdeEmpregador.java | 2 +- .../tribproctrab/TIdeEmpregadorCnpj.java | 2 +- .../tribproctrab/TIdeEmpregadorExclusao.java | 2 +- .../tribproctrab/TIdeEventoEvtTab.java | 2 +- .../tribproctrab/TIdeEventoEvtTabInicial.java | 2 +- .../tribproctrab/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tribproctrab/TIdeEventoFolha.java | 2 +- .../tribproctrab/TIdeEventoFolhaMensal.java | 2 +- .../tribproctrab/TIdeEventoFolhaMensalPF.java | 2 +- .../tribproctrab/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../TIdeEventoRetornoContrib.java | 2 +- .../tribproctrab/TIdeEventoRetornoMensal.java | 2 +- .../tribproctrab/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tribproctrab/TIdeEventoTrab.java | 2 +- .../tribproctrab/TIdeEventoTrabAdmissao.java | 2 +- .../tribproctrab/TIdeEventoTrabIndGuia.java | 2 +- .../tribproctrab/TIdeEventoTrabJud.java | 2 +- .../tribproctrab/TIdeEventoTrabPJ.java | 2 +- .../tribproctrab/TIdeTrabSemVinculo.java | 2 +- .../eventos/tribproctrab/TIdeVinculo.java | 4 +- .../tribproctrab/TIdeVinculoBaixa.java | 4 +- .../eventos/tribproctrab/TIdeVinculoSst.java | 4 +- .../eventos/tribproctrab/TInfoEstagiario.java | 2 +- .../eventos/tribproctrab/TInfoInterm.java | 2 +- .../eventos/tribproctrab/TInfoMV.java | 2 +- .../eventos/tribproctrab/TInfoRRA.java | 2 +- .../eventos/tribproctrab/TInfoSimples.java | 2 +- .../eventos/tribproctrab/TItensRemunRpps.java | 2 +- .../eventos/tribproctrab/TLocalTrabGeral.java | 2 +- .../eventos/tribproctrab/TNascimento.java | 2 +- .../eventos/tribproctrab/TNovaValidade.java | 2 +- .../eventos/tribproctrab/TProcJudTrab.java | 2 +- .../eventos/tribproctrab/TRemuneracao.java | 2 +- .../esquemas/eventos/tribproctrab/TSSexo.java | 2 +- .../esquemas/eventos/tribproctrab/TSSim.java | 2 +- .../eventos/tribproctrab/TSSimNao.java | 2 +- .../eventos/tribproctrab/TSTpAcConv.java | 11 +- .../eventos/tribproctrab/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tribproctrab/TSUf.java | 2 +- .../eventos/tribproctrab/TSucessaoVinc.java | 4 +- .../eventos/tribproctrab/TTreiCap.java | 2 +- .../eventos/tribproctrab/TransformType.java | 4 +- .../eventos/tribproctrab/TransformsType.java | 2 +- .../eventos/tribproctrab/X509DataType.java | 10 +- .../tribproctrab/X509IssuerSerialType.java | 2 +- .../eventos/tribproctrab/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/tsvaltcontr/DSAKeyValueType.java | 2 +- .../eventos/tsvaltcontr/DigestMethodType.java | 4 +- .../esquemas/eventos/tsvaltcontr/ESocial.java | 2 +- .../eventos/tsvaltcontr/KeyInfoType.java | 22 +- .../eventos/tsvaltcontr/KeyValueType.java | 10 +- .../eventos/tsvaltcontr/ManifestType.java | 2 +- .../eventos/tsvaltcontr/ObjectFactory.java | 86 ++--- .../eventos/tsvaltcontr/ObjectType.java | 4 +- .../eventos/tsvaltcontr/PGPDataType.java | 10 +- .../eventos/tsvaltcontr/RSAKeyValueType.java | 2 +- .../eventos/tsvaltcontr/ReferenceType.java | 2 +- .../tsvaltcontr/RetrievalMethodType.java | 2 +- .../eventos/tsvaltcontr/SPKIDataType.java | 4 +- .../tsvaltcontr/SignatureMethodType.java | 2 +- .../tsvaltcontr/SignaturePropertiesType.java | 2 +- .../tsvaltcontr/SignaturePropertyType.java | 4 +- .../eventos/tsvaltcontr/SignatureType.java | 2 +- .../tsvaltcontr/SignatureValueType.java | 2 +- .../eventos/tsvaltcontr/SignedInfoType.java | 2 +- .../eventos/tsvaltcontr/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/tsvaltcontr/TAprend.java | 2 +- .../eventos/tsvaltcontr/TContato.java | 2 +- .../eventos/tsvaltcontr/TDetReemb.java | 2 +- .../eventos/tsvaltcontr/TDetReembTot.java | 2 +- .../eventos/tsvaltcontr/TEnderecoBrasil.java | 2 +- .../tsvaltcontr/TEnderecoExterior.java | 2 +- .../eventos/tsvaltcontr/THorContratual.java | 2 +- .../eventos/tsvaltcontr/TIdeBeneficio.java | 2 +- .../eventos/tsvaltcontr/TIdeEmpregador.java | 2 +- .../tsvaltcontr/TIdeEmpregadorCnpj.java | 2 +- .../tsvaltcontr/TIdeEmpregadorExclusao.java | 2 +- .../eventos/tsvaltcontr/TIdeEventoEvtTab.java | 2 +- .../tsvaltcontr/TIdeEventoEvtTabInicial.java | 2 +- .../tsvaltcontr/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tsvaltcontr/TIdeEventoFolha.java | 2 +- .../tsvaltcontr/TIdeEventoFolhaMensal.java | 2 +- .../tsvaltcontr/TIdeEventoFolhaMensalPF.java | 2 +- .../tsvaltcontr/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../tsvaltcontr/TIdeEventoRetornoContrib.java | 2 +- .../tsvaltcontr/TIdeEventoRetornoMensal.java | 2 +- .../tsvaltcontr/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tsvaltcontr/TIdeEventoTrab.java | 2 +- .../tsvaltcontr/TIdeEventoTrabAdmissao.java | 2 +- .../tsvaltcontr/TIdeEventoTrabIndGuia.java | 2 +- .../tsvaltcontr/TIdeEventoTrabJud.java | 2 +- .../eventos/tsvaltcontr/TIdeEventoTrabPJ.java | 2 +- .../tsvaltcontr/TIdeTrabSemVinculo.java | 2 +- .../eventos/tsvaltcontr/TIdeVinculo.java | 4 +- .../eventos/tsvaltcontr/TIdeVinculoBaixa.java | 4 +- .../eventos/tsvaltcontr/TIdeVinculoSst.java | 4 +- .../eventos/tsvaltcontr/TInfoEstagiario.java | 2 +- .../eventos/tsvaltcontr/TInfoInterm.java | 2 +- .../esquemas/eventos/tsvaltcontr/TInfoMV.java | 2 +- .../eventos/tsvaltcontr/TInfoRRA.java | 2 +- .../eventos/tsvaltcontr/TInfoSimples.java | 2 +- .../eventos/tsvaltcontr/TItensRemunRpps.java | 2 +- .../eventos/tsvaltcontr/TLocalTrabGeral.java | 2 +- .../eventos/tsvaltcontr/TNascimento.java | 2 +- .../eventos/tsvaltcontr/TNovaValidade.java | 2 +- .../eventos/tsvaltcontr/TProcJudTrab.java | 2 +- .../eventos/tsvaltcontr/TRemuneracao.java | 2 +- .../esquemas/eventos/tsvaltcontr/TSSexo.java | 2 +- .../esquemas/eventos/tsvaltcontr/TSSim.java | 2 +- .../eventos/tsvaltcontr/TSSimNao.java | 2 +- .../eventos/tsvaltcontr/TSTpAcConv.java | 11 +- .../eventos/tsvaltcontr/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tsvaltcontr/TSUf.java | 2 +- .../eventos/tsvaltcontr/TSucessaoVinc.java | 4 +- .../eventos/tsvaltcontr/TTreiCap.java | 2 +- .../eventos/tsvaltcontr/TransformType.java | 4 +- .../eventos/tsvaltcontr/TransformsType.java | 2 +- .../eventos/tsvaltcontr/X509DataType.java | 18 +- .../tsvaltcontr/X509IssuerSerialType.java | 2 +- .../eventos/tsvaltcontr/package-info.java | 2 +- .../tsvinicio/CanonicalizationMethodType.java | 2 +- .../eventos/tsvinicio/DSAKeyValueType.java | 2 +- .../eventos/tsvinicio/DigestMethodType.java | 2 +- .../esquemas/eventos/tsvinicio/ESocial.java | 32 +- .../eventos/tsvinicio/KeyInfoType.java | 18 +- .../eventos/tsvinicio/KeyValueType.java | 10 +- .../eventos/tsvinicio/ManifestType.java | 2 +- .../eventos/tsvinicio/ObjectFactory.java | 82 ++--- .../eventos/tsvinicio/ObjectType.java | 2 +- .../eventos/tsvinicio/PGPDataType.java | 12 +- .../eventos/tsvinicio/RSAKeyValueType.java | 2 +- .../eventos/tsvinicio/ReferenceType.java | 2 +- .../tsvinicio/RetrievalMethodType.java | 2 +- .../eventos/tsvinicio/SPKIDataType.java | 4 +- .../tsvinicio/SignatureMethodType.java | 2 +- .../tsvinicio/SignaturePropertiesType.java | 2 +- .../tsvinicio/SignaturePropertyType.java | 2 +- .../eventos/tsvinicio/SignatureType.java | 2 +- .../eventos/tsvinicio/SignatureValueType.java | 2 +- .../eventos/tsvinicio/SignedInfoType.java | 2 +- .../eventos/tsvinicio/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/tsvinicio/TAprend.java | 2 +- .../esquemas/eventos/tsvinicio/TContato.java | 2 +- .../esquemas/eventos/tsvinicio/TDetReemb.java | 2 +- .../eventos/tsvinicio/TDetReembTot.java | 2 +- .../eventos/tsvinicio/TEnderecoBrasil.java | 2 +- .../eventos/tsvinicio/TEnderecoExterior.java | 2 +- .../eventos/tsvinicio/THorContratual.java | 2 +- .../eventos/tsvinicio/TIdeBeneficio.java | 2 +- .../eventos/tsvinicio/TIdeEmpregador.java | 2 +- .../eventos/tsvinicio/TIdeEmpregadorCnpj.java | 2 +- .../tsvinicio/TIdeEmpregadorExclusao.java | 2 +- .../eventos/tsvinicio/TIdeEventoEvtTab.java | 2 +- .../tsvinicio/TIdeEventoEvtTabInicial.java | 2 +- .../eventos/tsvinicio/TIdeEventoExclusao.java | 2 +- .../tsvinicio/TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tsvinicio/TIdeEventoFolha.java | 2 +- .../tsvinicio/TIdeEventoFolhaMensal.java | 2 +- .../tsvinicio/TIdeEventoFolhaMensalPF.java | 2 +- .../eventos/tsvinicio/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../tsvinicio/TIdeEventoRetornoContrib.java | 2 +- .../tsvinicio/TIdeEventoRetornoMensal.java | 2 +- .../tsvinicio/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tsvinicio/TIdeEventoTrab.java | 2 +- .../tsvinicio/TIdeEventoTrabAdmissao.java | 2 +- .../tsvinicio/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/tsvinicio/TIdeEventoTrabJud.java | 2 +- .../eventos/tsvinicio/TIdeEventoTrabPJ.java | 2 +- .../eventos/tsvinicio/TIdeTrabSemVinculo.java | 2 +- .../eventos/tsvinicio/TIdeVinculo.java | 4 +- .../eventos/tsvinicio/TIdeVinculoBaixa.java | 4 +- .../eventos/tsvinicio/TIdeVinculoSst.java | 4 +- .../eventos/tsvinicio/TInfoEstagiario.java | 2 +- .../eventos/tsvinicio/TInfoInterm.java | 2 +- .../esquemas/eventos/tsvinicio/TInfoMV.java | 2 +- .../esquemas/eventos/tsvinicio/TInfoRRA.java | 2 +- .../eventos/tsvinicio/TInfoSimples.java | 2 +- .../eventos/tsvinicio/TItensRemunRpps.java | 2 +- .../eventos/tsvinicio/TLocalTrabGeral.java | 2 +- .../eventos/tsvinicio/TNascimento.java | 2 +- .../eventos/tsvinicio/TNovaValidade.java | 2 +- .../eventos/tsvinicio/TProcJudTrab.java | 2 +- .../eventos/tsvinicio/TRemuneracao.java | 2 +- .../esquemas/eventos/tsvinicio/TSSexo.java | 2 +- .../esquemas/eventos/tsvinicio/TSSim.java | 2 +- .../esquemas/eventos/tsvinicio/TSSimNao.java | 2 +- .../eventos/tsvinicio/TSTpAcConv.java | 11 +- .../eventos/tsvinicio/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tsvinicio/TSUf.java | 2 +- .../eventos/tsvinicio/TSucessaoVinc.java | 4 +- .../esquemas/eventos/tsvinicio/TTreiCap.java | 2 +- .../eventos/tsvinicio/TransformType.java | 2 +- .../eventos/tsvinicio/TransformsType.java | 2 +- .../eventos/tsvinicio/X509DataType.java | 14 +- .../tsvinicio/X509IssuerSerialType.java | 2 +- .../eventos/tsvinicio/package-info.java | 2 +- .../CanonicalizationMethodType.java | 2 +- .../eventos/tsvtermino/DSAKeyValueType.java | 2 +- .../eventos/tsvtermino/DigestMethodType.java | 4 +- .../esquemas/eventos/tsvtermino/ESocial.java | 2 +- .../eventos/tsvtermino/KeyInfoType.java | 24 +- .../eventos/tsvtermino/KeyValueType.java | 6 +- .../eventos/tsvtermino/ManifestType.java | 2 +- .../eventos/tsvtermino/ObjectFactory.java | 70 ++-- .../eventos/tsvtermino/ObjectType.java | 4 +- .../eventos/tsvtermino/PGPDataType.java | 10 +- .../eventos/tsvtermino/RSAKeyValueType.java | 2 +- .../eventos/tsvtermino/ReferenceType.java | 2 +- .../tsvtermino/RetrievalMethodType.java | 2 +- .../eventos/tsvtermino/SPKIDataType.java | 2 +- .../tsvtermino/SignatureMethodType.java | 4 +- .../tsvtermino/SignaturePropertiesType.java | 2 +- .../tsvtermino/SignaturePropertyType.java | 4 +- .../eventos/tsvtermino/SignatureType.java | 2 +- .../tsvtermino/SignatureValueType.java | 2 +- .../eventos/tsvtermino/SignedInfoType.java | 2 +- .../eventos/tsvtermino/TAlvaraJudicial.java | 2 +- .../esquemas/eventos/tsvtermino/TAprend.java | 2 +- .../esquemas/eventos/tsvtermino/TContato.java | 2 +- .../eventos/tsvtermino/TDetReemb.java | 2 +- .../eventos/tsvtermino/TDetReembTot.java | 2 +- .../eventos/tsvtermino/TEnderecoBrasil.java | 2 +- .../eventos/tsvtermino/TEnderecoExterior.java | 2 +- .../eventos/tsvtermino/THorContratual.java | 2 +- .../eventos/tsvtermino/TIdeBeneficio.java | 2 +- .../eventos/tsvtermino/TIdeEmpregador.java | 2 +- .../tsvtermino/TIdeEmpregadorCnpj.java | 2 +- .../tsvtermino/TIdeEmpregadorExclusao.java | 2 +- .../eventos/tsvtermino/TIdeEventoEvtTab.java | 2 +- .../tsvtermino/TIdeEventoEvtTabInicial.java | 2 +- .../tsvtermino/TIdeEventoExclusao.java | 2 +- .../TIdeEventoExclusaoProcTrab.java | 2 +- .../eventos/tsvtermino/TIdeEventoFolha.java | 2 +- .../tsvtermino/TIdeEventoFolhaMensal.java | 2 +- .../tsvtermino/TIdeEventoFolhaMensalPF.java | 2 +- .../tsvtermino/TIdeEventoFolhaOpp.java | 2 +- .../TIdeEventoFolhaSemRetificacao.java | 2 +- .../tsvtermino/TIdeEventoRetornoContrib.java | 2 +- .../tsvtermino/TIdeEventoRetornoMensal.java | 2 +- .../tsvtermino/TIdeEventoRetornoTrab.java | 2 +- .../eventos/tsvtermino/TIdeEventoTrab.java | 2 +- .../tsvtermino/TIdeEventoTrabAdmissao.java | 2 +- .../tsvtermino/TIdeEventoTrabIndGuia.java | 2 +- .../eventos/tsvtermino/TIdeEventoTrabJud.java | 2 +- .../eventos/tsvtermino/TIdeEventoTrabPJ.java | 2 +- .../tsvtermino/TIdeTrabSemVinculo.java | 2 +- .../eventos/tsvtermino/TIdeVinculo.java | 4 +- .../eventos/tsvtermino/TIdeVinculoBaixa.java | 4 +- .../eventos/tsvtermino/TIdeVinculoSst.java | 4 +- .../eventos/tsvtermino/TInfoEstagiario.java | 2 +- .../eventos/tsvtermino/TInfoInterm.java | 2 +- .../esquemas/eventos/tsvtermino/TInfoMV.java | 2 +- .../esquemas/eventos/tsvtermino/TInfoRRA.java | 2 +- .../eventos/tsvtermino/TInfoSimples.java | 2 +- .../eventos/tsvtermino/TItensRemunRpps.java | 2 +- .../eventos/tsvtermino/TLocalTrabGeral.java | 2 +- .../eventos/tsvtermino/TNascimento.java | 2 +- .../eventos/tsvtermino/TNovaValidade.java | 2 +- .../eventos/tsvtermino/TProcJudTrab.java | 2 +- .../eventos/tsvtermino/TRemuneracao.java | 2 +- .../esquemas/eventos/tsvtermino/TSSexo.java | 2 +- .../esquemas/eventos/tsvtermino/TSSim.java | 2 +- .../esquemas/eventos/tsvtermino/TSSimNao.java | 2 +- .../eventos/tsvtermino/TSTpAcConv.java | 11 +- .../eventos/tsvtermino/TSTpAcConvFGTS.java | 11 +- .../esquemas/eventos/tsvtermino/TSUf.java | 2 +- .../eventos/tsvtermino/TSucessaoVinc.java | 4 +- .../esquemas/eventos/tsvtermino/TTreiCap.java | 2 +- .../eventos/tsvtermino/TransformType.java | 4 +- .../eventos/tsvtermino/TransformsType.java | 2 +- .../eventos/tsvtermino/X509DataType.java | 16 +- .../tsvtermino/X509IssuerSerialType.java | 2 +- .../eventos/tsvtermino/package-info.java | 2 +- 3849 files changed, 9627 insertions(+), 8635 deletions(-) diff --git a/src/esocial-comunicacao/src/main/java/META-INF/sun-jaxb.episode b/src/esocial-comunicacao/src/main/java/META-INF/sun-jaxb.episode index ee9be4a85..3cc6a577e 100644 --- a/src/esocial-comunicacao/src/main/java/META-INF/sun-jaxb.episode +++ b/src/esocial-comunicacao/src/main/java/META-INF/sun-jaxb.episode @@ -2,10 +2,10 @@ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/CanonicalizationMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/CanonicalizationMethodType.java index 253f15860..0102a73c4 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/CanonicalizationMethodType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/CanonicalizationMethodType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -20,9 +20,9 @@ /** - *

Classe Java de CanonicalizationMethodType complex type. + *

Java class for CanonicalizationMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="CanonicalizationMethodType">
@@ -83,7 +83,7 @@ public List getContent() {
     }
 
     /**
-     * Obtém o valor da propriedade algorithm.
+     * Gets the value of the algorithm property.
      * 
      * @return
      *     possible object is
@@ -95,7 +95,7 @@ public String getAlgorithm() {
     }
 
     /**
-     * Define o valor da propriedade algorithm.
+     * Sets the value of the algorithm property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DSAKeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DSAKeyValueType.java
index a57c4c55e..1adb3db1e 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DSAKeyValueType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DSAKeyValueType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -15,9 +15,9 @@
 
 
 /**
- * 

Classe Java de DSAKeyValueType complex type. + *

Java class for DSAKeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="DSAKeyValueType">
@@ -71,7 +71,7 @@ public class DSAKeyValueType {
     protected byte[] pgenCounter;
 
     /**
-     * Obtém o valor da propriedade p.
+     * Gets the value of the p property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public byte[] getP() {
     }
 
     /**
-     * Define o valor da propriedade p.
+     * Sets the value of the p property.
      * 
      * @param value
      *     allowed object is
@@ -93,7 +93,7 @@ public void setP(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade q.
+     * Gets the value of the q property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public byte[] getQ() {
     }
 
     /**
-     * Define o valor da propriedade q.
+     * Sets the value of the q property.
      * 
      * @param value
      *     allowed object is
@@ -115,7 +115,7 @@ public void setQ(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade g.
+     * Gets the value of the g property.
      * 
      * @return
      *     possible object is
@@ -126,7 +126,7 @@ public byte[] getG() {
     }
 
     /**
-     * Define o valor da propriedade g.
+     * Sets the value of the g property.
      * 
      * @param value
      *     allowed object is
@@ -137,7 +137,7 @@ public void setG(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade y.
+     * Gets the value of the y property.
      * 
      * @return
      *     possible object is
@@ -148,7 +148,7 @@ public byte[] getY() {
     }
 
     /**
-     * Define o valor da propriedade y.
+     * Sets the value of the y property.
      * 
      * @param value
      *     allowed object is
@@ -159,7 +159,7 @@ public void setY(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade j.
+     * Gets the value of the j property.
      * 
      * @return
      *     possible object is
@@ -170,7 +170,7 @@ public byte[] getJ() {
     }
 
     /**
-     * Define o valor da propriedade j.
+     * Sets the value of the j property.
      * 
      * @param value
      *     allowed object is
@@ -181,7 +181,7 @@ public void setJ(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade seed.
+     * Gets the value of the seed property.
      * 
      * @return
      *     possible object is
@@ -192,7 +192,7 @@ public byte[] getSeed() {
     }
 
     /**
-     * Define o valor da propriedade seed.
+     * Sets the value of the seed property.
      * 
      * @param value
      *     allowed object is
@@ -203,7 +203,7 @@ public void setSeed(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade pgenCounter.
+     * Gets the value of the pgenCounter property.
      * 
      * @return
      *     possible object is
@@ -214,7 +214,7 @@ public byte[] getPgenCounter() {
     }
 
     /**
-     * Define o valor da propriedade pgenCounter.
+     * Sets the value of the pgenCounter property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DigestMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DigestMethodType.java
index fc3aa5dbf..c2e6c3081 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DigestMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/DigestMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -21,9 +21,9 @@
 
 
 /**
- * 

Classe Java de DigestMethodType complex type. + *

Java class for DigestMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="DigestMethodType">
@@ -71,8 +71,8 @@ public class DigestMethodType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * @@ -85,7 +85,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -97,7 +97,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ESocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ESocial.java index 3ddd0a67b..4c5d032b6 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ESocial.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ESocial.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:24 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:52 AM BRT // @@ -16,9 +16,9 @@ /** - *

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class ESocial {
     protected ESocial.RetornoConsultaIdentificadoresEvts retornoConsultaIdentificadoresEvts;
 
     /**
-     * Obtém o valor da propriedade retornoConsultaIdentificadoresEvts.
+     * Gets the value of the retornoConsultaIdentificadoresEvts property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public ESocial.RetornoConsultaIdentificadoresEvts getRetornoConsultaIdentificado
     }
 
     /**
-     * Define o valor da propriedade retornoConsultaIdentificadoresEvts.
+     * Sets the value of the retornoConsultaIdentificadoresEvts property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setRetornoConsultaIdentificadoresEvts(ESocial.RetornoConsultaIdentif
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -112,7 +112,7 @@ public static class RetornoConsultaIdentificadoresEvts {
         protected TRetornoConsultaIdentificadoresEventos retornoIdentificadoresEvts;
 
         /**
-         * Obtém o valor da propriedade status.
+         * Gets the value of the status property.
          * 
          * @return
          *     possible object is
@@ -124,7 +124,7 @@ public TStatus getStatus() {
         }
 
         /**
-         * Define o valor da propriedade status.
+         * Sets the value of the status property.
          * 
          * @param value
          *     allowed object is
@@ -136,7 +136,7 @@ public void setStatus(TStatus value) {
         }
 
         /**
-         * Obtém o valor da propriedade retornoIdentificadoresEvts.
+         * Gets the value of the retornoIdentificadoresEvts property.
          * 
          * @return
          *     possible object is
@@ -148,7 +148,7 @@ public TRetornoConsultaIdentificadoresEventos getRetornoIdentificadoresEvts() {
         }
 
         /**
-         * Define o valor da propriedade retornoIdentificadoresEvts.
+         * Sets the value of the retornoIdentificadoresEvts property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyInfoType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyInfoType.java
index d2afaa977..3797fdd63 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyInfoType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyInfoType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -27,9 +27,9 @@
 
 
 /**
- * 

Classe Java de KeyInfoType complex type. + *

Java class for KeyInfoType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="KeyInfoType">
@@ -60,13 +60,13 @@
 public class KeyInfoType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
+        @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlMixed
     @XmlAnyElement(lax = true)
@@ -95,16 +95,16 @@ public class KeyInfoType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link String } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ @@ -116,7 +116,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -128,7 +128,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyValueType.java index 4ddd31ff9..c0ed724ac 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyValueType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/KeyValueType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de KeyValueType complex type. + *

Java class for KeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="KeyValueType">
@@ -74,11 +74,11 @@ public class KeyValueType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ManifestType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ManifestType.java index 59996311d..699f479d8 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ManifestType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ManifestType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de ManifestType complex type. + *

Java class for ManifestType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ManifestType">
@@ -85,7 +85,7 @@ public List getReference() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -97,7 +97,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectFactory.java
index d7b251275..6c5877eb3 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -56,16 +56,16 @@ public class ObjectFactory {
     private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data");
     private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest");
     private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty");
-    private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath");
+    private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp");
     private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength");
+    private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID");
+    private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket");
+    private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath");
     private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial");
     private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL");
     private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName");
     private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI");
     private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate");
-    private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID");
-    private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket");
-    private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp");
 
     /**
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.esocialjt.comunicacao.eventos.consulta.identificadores.eventos
@@ -467,12 +467,12 @@ public JAXBElement createSignatureProperty(SignaturePrope
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class)
-    public JAXBElement createTransformTypeXPath(String value) {
-        return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value);
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class)
+    public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) {
+        return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value));
     }
 
     /**
@@ -485,75 +485,75 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class)
-    public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) {
-        return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value);
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class)
+    public JAXBElement createPGPDataTypePGPKeyID(byte[] value) {
+        return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
     }
 
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class)
-    public JAXBElement createX509DataTypeX509CRL(byte[] value) {
-        return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class)
+    public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) {
+        return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
     }
 
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class)
-    public JAXBElement createX509DataTypeX509SubjectName(String value) {
-        return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value);
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class)
+    public JAXBElement createTransformTypeXPath(String value) {
+        return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value);
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class)
-    public JAXBElement createX509DataTypeX509SKI(byte[] value) {
-        return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class)
+    public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) {
+        return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value);
     }
 
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class)
-    public JAXBElement createX509DataTypeX509Certificate(byte[] value) {
-        return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class)
+    public JAXBElement createX509DataTypeX509CRL(byte[] value) {
+        return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class)
-    public JAXBElement createPGPDataTypePGPKeyID(byte[] value) {
-        return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class)
+    public JAXBElement createX509DataTypeX509SubjectName(String value) {
+        return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value);
     }
 
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class)
-    public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) {
-        return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class)
+    public JAXBElement createX509DataTypeX509SKI(byte[] value) {
+        return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
     }
 
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class)
-    public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) {
-        return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value));
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class)
+    public JAXBElement createX509DataTypeX509Certificate(byte[] value) {
+        return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
     }
 
 }
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectType.java
index d29a6a521..8f2cdbd08 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ObjectType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -24,9 +24,9 @@
 
 
 /**
- * 

Classe Java de ObjectType complex type. + *

Java class for ObjectType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ObjectType">
@@ -83,8 +83,8 @@ public class ObjectType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * @@ -97,7 +97,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -109,7 +109,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is @@ -121,7 +121,7 @@ public void setId(String value) { } /** - * Obtém o valor da propriedade mimeType. + * Gets the value of the mimeType property. * * @return * possible object is @@ -133,7 +133,7 @@ public String getMimeType() { } /** - * Define o valor da propriedade mimeType. + * Sets the value of the mimeType property. * * @param value * allowed object is @@ -145,7 +145,7 @@ public void setMimeType(String value) { } /** - * Obtém o valor da propriedade encoding. + * Gets the value of the encoding property. * * @return * possible object is @@ -157,7 +157,7 @@ public String getEncoding() { } /** - * Define o valor da propriedade encoding. + * Sets the value of the encoding property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/PGPDataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/PGPDataType.java index c56ca221d..f126ff327 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/PGPDataType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/PGPDataType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -21,9 +21,9 @@ /** - *

Classe Java de PGPDataType complex type. + *

Java class for PGPDataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="PGPDataType">
@@ -54,23 +54,23 @@
 public class PGPDataType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
+        @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlAnyElement(lax = true)
     protected List content;
 
     /**
-     * Obtém o restante do modelo do conteúdo. 
+     * Gets the rest of the content model. 
      * 
      * 

- * Você está obtendo esta propriedade "catch-all" pelo seguinte motivo: - * O nome do campo "PGPKeyPacket" é usado por duas partes diferentes de um esquema. Consulte: - * linha 220 de file:/home/tiago/desenv/git/esocial/src/esocial-comunicacao/src/main/resources/XSD/Eventos/ConsultaIdentificadoresEventos/xmldsig-core-schema.xsd - * linha 215 de file:/home/tiago/desenv/git/esocial/src/esocial-comunicacao/src/main/resources/XSD/Eventos/ConsultaIdentificadoresEventos/xmldsig-core-schema.xsd + * You are getting this "catch-all" property because of the following reason: + * The field name "PGPKeyPacket" is used by two different parts of a schema. See: + * line 220 of file:/workspace/src/esocial-comunicacao/src/main/resources/XSD/Eventos/ConsultaIdentificadoresEventos/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-comunicacao/src/main/resources/XSD/Eventos/ConsultaIdentificadoresEventos/xmldsig-core-schema.xsd *

- * Para eliminar esta propriedade, aplique uma personalização de propriedade a uma - * das seguintes declarações, a fim de alterar seus nomes: + * To get rid of this property, apply a property customization to one + * of both of the following declarations to change their names: * Gets the value of the content property. * *

@@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RSAKeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RSAKeyValueType.java index 3503db3a0..90f2b4ff3 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RSAKeyValueType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RSAKeyValueType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -15,9 +15,9 @@ /** - *

Classe Java de RSAKeyValueType complex type. + *

Java class for RSAKeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="RSAKeyValueType">
@@ -47,7 +47,7 @@ public class RSAKeyValueType {
     protected byte[] exponent;
 
     /**
-     * Obtém o valor da propriedade modulus.
+     * Gets the value of the modulus property.
      * 
      * @return
      *     possible object is
@@ -58,7 +58,7 @@ public byte[] getModulus() {
     }
 
     /**
-     * Define o valor da propriedade modulus.
+     * Sets the value of the modulus property.
      * 
      * @param value
      *     allowed object is
@@ -69,7 +69,7 @@ public void setModulus(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade exponent.
+     * Gets the value of the exponent property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public byte[] getExponent() {
     }
 
     /**
-     * Define o valor da propriedade exponent.
+     * Sets the value of the exponent property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ReferenceType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ReferenceType.java
index a453fcf73..d2f415229 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ReferenceType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/ReferenceType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de ReferenceType complex type. + *

Java class for ReferenceType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ReferenceType">
@@ -70,7 +70,7 @@ public class ReferenceType {
     protected String type;
 
     /**
-     * Obtém o valor da propriedade transforms.
+     * Gets the value of the transforms property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public TransformsType getTransforms() {
     }
 
     /**
-     * Define o valor da propriedade transforms.
+     * Sets the value of the transforms property.
      * 
      * @param value
      *     allowed object is
@@ -94,7 +94,7 @@ public void setTransforms(TransformsType value) {
     }
 
     /**
-     * Obtém o valor da propriedade digestMethod.
+     * Gets the value of the digestMethod property.
      * 
      * @return
      *     possible object is
@@ -106,7 +106,7 @@ public DigestMethodType getDigestMethod() {
     }
 
     /**
-     * Define o valor da propriedade digestMethod.
+     * Sets the value of the digestMethod property.
      * 
      * @param value
      *     allowed object is
@@ -118,7 +118,7 @@ public void setDigestMethod(DigestMethodType value) {
     }
 
     /**
-     * Obtém o valor da propriedade digestValue.
+     * Gets the value of the digestValue property.
      * 
      * @return
      *     possible object is
@@ -129,7 +129,7 @@ public byte[] getDigestValue() {
     }
 
     /**
-     * Define o valor da propriedade digestValue.
+     * Sets the value of the digestValue property.
      * 
      * @param value
      *     allowed object is
@@ -140,7 +140,7 @@ public void setDigestValue(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -152,7 +152,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
@@ -164,7 +164,7 @@ public void setId(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade uri.
+     * Gets the value of the uri property.
      * 
      * @return
      *     possible object is
@@ -176,7 +176,7 @@ public String getURI() {
     }
 
     /**
-     * Define o valor da propriedade uri.
+     * Sets the value of the uri property.
      * 
      * @param value
      *     allowed object is
@@ -188,7 +188,7 @@ public void setURI(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade type.
+     * Gets the value of the type property.
      * 
      * @return
      *     possible object is
@@ -200,7 +200,7 @@ public String getType() {
     }
 
     /**
-     * Define o valor da propriedade type.
+     * Sets the value of the type property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RetrievalMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RetrievalMethodType.java
index a5aa1ebfd..5e2794e4f 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RetrievalMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/RetrievalMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de RetrievalMethodType complex type. + *

Java class for RetrievalMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="RetrievalMethodType">
@@ -53,7 +53,7 @@ public class RetrievalMethodType {
     protected String type;
 
     /**
-     * Obtém o valor da propriedade transforms.
+     * Gets the value of the transforms property.
      * 
      * @return
      *     possible object is
@@ -65,7 +65,7 @@ public TransformsType getTransforms() {
     }
 
     /**
-     * Define o valor da propriedade transforms.
+     * Sets the value of the transforms property.
      * 
      * @param value
      *     allowed object is
@@ -77,7 +77,7 @@ public void setTransforms(TransformsType value) {
     }
 
     /**
-     * Obtém o valor da propriedade uri.
+     * Gets the value of the uri property.
      * 
      * @return
      *     possible object is
@@ -89,7 +89,7 @@ public String getURI() {
     }
 
     /**
-     * Define o valor da propriedade uri.
+     * Sets the value of the uri property.
      * 
      * @param value
      *     allowed object is
@@ -101,7 +101,7 @@ public void setURI(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade type.
+     * Gets the value of the type property.
      * 
      * @return
      *     possible object is
@@ -113,7 +113,7 @@ public String getType() {
     }
 
     /**
-     * Define o valor da propriedade type.
+     * Sets the value of the type property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SPKIDataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SPKIDataType.java
index f8d70acb7..91a4b9ff7 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SPKIDataType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SPKIDataType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de SPKIDataType complex type. + *

Java class for SPKIDataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SPKIDataType">
@@ -67,9 +67,9 @@ public class SPKIDataType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureMethodType.java index a5e4528c3..e186d56f1 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureMethodType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureMethodType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -23,9 +23,9 @@ /** - *

Classe Java de SignatureMethodType complex type. + *

Java class for SignatureMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureMethodType">
@@ -76,8 +76,8 @@ public class SignatureMethodType {
      * 

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ @@ -89,7 +89,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -101,7 +101,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertiesType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertiesType.java index fe276cf6e..f36bc88ce 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertiesType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertiesType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de SignaturePropertiesType complex type. + *

Java class for SignaturePropertiesType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignaturePropertiesType">
@@ -85,7 +85,7 @@ public List getSignatureProperty() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -97,7 +97,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertyType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertyType.java
index cd239bc5a..0a242f4f6 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertyType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignaturePropertyType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -24,9 +24,9 @@
 
 
 /**
- * 

Classe Java de SignaturePropertyType complex type. + *

Java class for SignaturePropertyType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignaturePropertyType">
@@ -80,8 +80,8 @@ public class SignaturePropertyType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * @@ -94,7 +94,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade target. + * Gets the value of the target property. * * @return * possible object is @@ -106,7 +106,7 @@ public String getTarget() { } /** - * Define o valor da propriedade target. + * Sets the value of the target property. * * @param value * allowed object is @@ -118,7 +118,7 @@ public void setTarget(String value) { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -130,7 +130,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureType.java index faebef9e9..7ebef36ae 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de SignatureType complex type. + *

Java class for SignatureType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureType">
@@ -68,7 +68,7 @@ public class SignatureType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade signedInfo.
+     * Gets the value of the signedInfo property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public SignedInfoType getSignedInfo() {
     }
 
     /**
-     * Define o valor da propriedade signedInfo.
+     * Sets the value of the signedInfo property.
      * 
      * @param value
      *     allowed object is
@@ -92,7 +92,7 @@ public void setSignedInfo(SignedInfoType value) {
     }
 
     /**
-     * Obtém o valor da propriedade signatureValue.
+     * Gets the value of the signatureValue property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public SignatureValueType getSignatureValue() {
     }
 
     /**
-     * Define o valor da propriedade signatureValue.
+     * Sets the value of the signatureValue property.
      * 
      * @param value
      *     allowed object is
@@ -116,7 +116,7 @@ public void setSignatureValue(SignatureValueType value) {
     }
 
     /**
-     * Obtém o valor da propriedade keyInfo.
+     * Gets the value of the keyInfo property.
      * 
      * @return
      *     possible object is
@@ -128,7 +128,7 @@ public KeyInfoType getKeyInfo() {
     }
 
     /**
-     * Define o valor da propriedade keyInfo.
+     * Sets the value of the keyInfo property.
      * 
      * @param value
      *     allowed object is
@@ -169,7 +169,7 @@ public List getObject() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -181,7 +181,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureValueType.java
index cba4d9322..3839ae6ca 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureValueType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignatureValueType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de SignatureValueType complex type. + *

Java class for SignatureValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureValueType">
@@ -51,7 +51,7 @@ public class SignatureValueType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade value.
+     * Gets the value of the value property.
      * 
      * @return
      *     possible object is
@@ -62,7 +62,7 @@ public byte[] getValue() {
     }
 
     /**
-     * Define o valor da propriedade value.
+     * Sets the value of the value property.
      * 
      * @param value
      *     allowed object is
@@ -73,7 +73,7 @@ public void setValue(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -85,7 +85,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignedInfoType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignedInfoType.java
index 2e6bfd577..659e2881b 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignedInfoType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/SignedInfoType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -22,9 +22,9 @@
 
 
 /**
- * 

Classe Java de SignedInfoType complex type. + *

Java class for SignedInfoType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignedInfoType">
@@ -64,7 +64,7 @@ public class SignedInfoType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade canonicalizationMethod.
+     * Gets the value of the canonicalizationMethod property.
      * 
      * @return
      *     possible object is
@@ -76,7 +76,7 @@ public CanonicalizationMethodType getCanonicalizationMethod() {
     }
 
     /**
-     * Define o valor da propriedade canonicalizationMethod.
+     * Sets the value of the canonicalizationMethod property.
      * 
      * @param value
      *     allowed object is
@@ -88,7 +88,7 @@ public void setCanonicalizationMethod(CanonicalizationMethodType value) {
     }
 
     /**
-     * Obtém o valor da propriedade signatureMethod.
+     * Gets the value of the signatureMethod property.
      * 
      * @return
      *     possible object is
@@ -100,7 +100,7 @@ public SignatureMethodType getSignatureMethod() {
     }
 
     /**
-     * Define o valor da propriedade signatureMethod.
+     * Sets the value of the signatureMethod property.
      * 
      * @param value
      *     allowed object is
@@ -141,7 +141,7 @@ public List getReference() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -153,7 +153,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosEmpregador.java
index ceeff0164..5ae2f2568 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:21 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:45 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define o filtro para consulta aos eventos do empregador que não sejam eventos de tabela e trabalhistas.
  * 
- * 

Classe Java de TConsultaEventosEmpregador complex type. + *

Java class for TConsultaEventosEmpregador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TConsultaEventosEmpregador">
@@ -62,7 +62,7 @@ public class TConsultaEventosEmpregador {
     protected String perApur;
 
     /**
-     * Obtém o valor da propriedade tpEvt.
+     * Gets the value of the tpEvt property.
      * 
      * @return
      *     possible object is
@@ -74,7 +74,7 @@ public String getTpEvt() {
     }
 
     /**
-     * Define o valor da propriedade tpEvt.
+     * Sets the value of the tpEvt property.
      * 
      * @param value
      *     allowed object is
@@ -86,7 +86,7 @@ public void setTpEvt(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade perApur.
+     * Gets the value of the perApur property.
      * 
      * @return
      *     possible object is
@@ -98,7 +98,7 @@ public String getPerApur() {
     }
 
     /**
-     * Define o valor da propriedade perApur.
+     * Sets the value of the perApur property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTabela.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTabela.java
index 350930a53..e00cd9f7d 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTabela.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTabela.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:22 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:48 AM BRT 
 //
 
 
@@ -18,9 +18,9 @@
 /**
  * Define o filtro para consulta aos eventos de tabela.
  * 
- * 

Classe Java de TConsultaEventosTabela complex type. + *

Java class for TConsultaEventosTabela complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TConsultaEventosTabela">
@@ -76,7 +76,7 @@ public class TConsultaEventosTabela {
     protected XMLGregorianCalendar dtFim;
 
     /**
-     * Obtém o valor da propriedade tpEvt.
+     * Gets the value of the tpEvt property.
      * 
      * @return
      *     possible object is
@@ -88,7 +88,7 @@ public String getTpEvt() {
     }
 
     /**
-     * Define o valor da propriedade tpEvt.
+     * Sets the value of the tpEvt property.
      * 
      * @param value
      *     allowed object is
@@ -100,7 +100,7 @@ public void setTpEvt(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade chEvt.
+     * Gets the value of the chEvt property.
      * 
      * @return
      *     possible object is
@@ -112,7 +112,7 @@ public String getChEvt() {
     }
 
     /**
-     * Define o valor da propriedade chEvt.
+     * Sets the value of the chEvt property.
      * 
      * @param value
      *     allowed object is
@@ -124,7 +124,7 @@ public void setChEvt(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade dtIni.
+     * Gets the value of the dtIni property.
      * 
      * @return
      *     possible object is
@@ -136,7 +136,7 @@ public XMLGregorianCalendar getDtIni() {
     }
 
     /**
-     * Define o valor da propriedade dtIni.
+     * Sets the value of the dtIni property.
      * 
      * @param value
      *     allowed object is
@@ -148,7 +148,7 @@ public void setDtIni(XMLGregorianCalendar value) {
     }
 
     /**
-     * Obtém o valor da propriedade dtFim.
+     * Gets the value of the dtFim property.
      * 
      * @return
      *     possible object is
@@ -160,7 +160,7 @@ public XMLGregorianCalendar getDtFim() {
     }
 
     /**
-     * Define o valor da propriedade dtFim.
+     * Sets the value of the dtFim property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTrabalhador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTrabalhador.java
index 079b494c8..e0a15df74 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTrabalhador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TConsultaEventosTrabalhador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:23 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:50 AM BRT 
 //
 
 
@@ -18,9 +18,9 @@
 /**
  * Define o filtro para consulta aos eventos de trabalhador.
  * 
- * 

Classe Java de TConsultaEventosTrabalhador complex type. + *

Java class for TConsultaEventosTrabalhador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TConsultaEventosTrabalhador">
@@ -71,7 +71,7 @@ public class TConsultaEventosTrabalhador {
     protected XMLGregorianCalendar dtFim;
 
     /**
-     * Obtém o valor da propriedade cpfTrab.
+     * Gets the value of the cpfTrab property.
      * 
      * @return
      *     possible object is
@@ -83,7 +83,7 @@ public String getCpfTrab() {
     }
 
     /**
-     * Define o valor da propriedade cpfTrab.
+     * Sets the value of the cpfTrab property.
      * 
      * @param value
      *     allowed object is
@@ -95,7 +95,7 @@ public void setCpfTrab(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade dtIni.
+     * Gets the value of the dtIni property.
      * 
      * @return
      *     possible object is
@@ -107,7 +107,7 @@ public XMLGregorianCalendar getDtIni() {
     }
 
     /**
-     * Define o valor da propriedade dtIni.
+     * Sets the value of the dtIni property.
      * 
      * @param value
      *     allowed object is
@@ -119,7 +119,7 @@ public void setDtIni(XMLGregorianCalendar value) {
     }
 
     /**
-     * Obtém o valor da propriedade dtFim.
+     * Gets the value of the dtFim property.
      * 
      * @return
      *     possible object is
@@ -131,7 +131,7 @@ public XMLGregorianCalendar getDtFim() {
     }
 
     /**
-     * Define o valor da propriedade dtFim.
+     * Sets the value of the dtFim property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TIdeEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TIdeEmpregador.java
index 9b1e73f7e..cb7964abe 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TIdeEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TIdeEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:23 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:50 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do empregador. 1-CNPJ; 2-CPF;
  * 
- * 

Classe Java de TIdeEmpregador complex type. + *

Java class for TIdeEmpregador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeEmpregador">
@@ -61,7 +61,7 @@ public class TIdeEmpregador {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public byte getTpInsc() {
@@ -69,7 +69,7 @@ public byte getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(byte value) {
@@ -77,7 +77,7 @@ public void setTpInsc(byte value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -89,7 +89,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TRetornoConsultaIdentificadoresEventos.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TRetornoConsultaIdentificadoresEventos.java
index 475a4ef64..6b7ba0422 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TRetornoConsultaIdentificadoresEventos.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TRetornoConsultaIdentificadoresEventos.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:24 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:52 AM BRT 
 //
 
 
@@ -24,9 +24,9 @@
 /**
  * Define os campos de retorno a consulta de eventos.
  * 
- * 

Classe Java de TRetornoConsultaIdentificadoresEventos complex type. + *

Java class for TRetornoConsultaIdentificadoresEventos complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TRetornoConsultaIdentificadoresEventos">
@@ -85,7 +85,7 @@ public class TRetornoConsultaIdentificadoresEventos {
     protected TRetornoConsultaIdentificadoresEventos.IdentificadoresEvts identificadoresEvts;
 
     /**
-     * Obtém o valor da propriedade qtdeTotEvtsConsulta.
+     * Gets the value of the qtdeTotEvtsConsulta property.
      * 
      */
     public long getQtdeTotEvtsConsulta() {
@@ -93,7 +93,7 @@ public long getQtdeTotEvtsConsulta() {
     }
 
     /**
-     * Define o valor da propriedade qtdeTotEvtsConsulta.
+     * Sets the value of the qtdeTotEvtsConsulta property.
      * 
      */
     public void setQtdeTotEvtsConsulta(long value) {
@@ -101,7 +101,7 @@ public void setQtdeTotEvtsConsulta(long value) {
     }
 
     /**
-     * Obtém o valor da propriedade dhUltimoEvtRetornado.
+     * Gets the value of the dhUltimoEvtRetornado property.
      * 
      * @return
      *     possible object is
@@ -113,7 +113,7 @@ public XMLGregorianCalendar getDhUltimoEvtRetornado() {
     }
 
     /**
-     * Define o valor da propriedade dhUltimoEvtRetornado.
+     * Sets the value of the dhUltimoEvtRetornado property.
      * 
      * @param value
      *     allowed object is
@@ -125,7 +125,7 @@ public void setDhUltimoEvtRetornado(XMLGregorianCalendar value) {
     }
 
     /**
-     * Obtém o valor da propriedade identificadoresEvts.
+     * Gets the value of the identificadoresEvts property.
      * 
      * @return
      *     possible object is
@@ -137,7 +137,7 @@ public TRetornoConsultaIdentificadoresEventos.IdentificadoresEvts getIdentificad
     }
 
     /**
-     * Define o valor da propriedade identificadoresEvts.
+     * Sets the value of the identificadoresEvts property.
      * 
      * @param value
      *     allowed object is
@@ -150,9 +150,9 @@ public void setIdentificadoresEvts(TRetornoConsultaIdentificadoresEventos.Identi
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -225,9 +225,9 @@ public ListClasse Java de anonymous complex type.
+         * 

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -266,7 +266,7 @@ public static class IdentificadorEvt {
             protected String nrRec;
 
             /**
-             * Obtém o valor da propriedade id.
+             * Gets the value of the id property.
              * 
              * @return
              *     possible object is
@@ -278,7 +278,7 @@ public String getId() {
             }
 
             /**
-             * Define o valor da propriedade id.
+             * Sets the value of the id property.
              * 
              * @param value
              *     allowed object is
@@ -290,7 +290,7 @@ public void setId(String value) {
             }
 
             /**
-             * Obtém o valor da propriedade nrRec.
+             * Gets the value of the nrRec property.
              * 
              * @return
              *     possible object is
@@ -302,7 +302,7 @@ public String getNrRec() {
             }
 
             /**
-             * Define o valor da propriedade nrRec.
+             * Sets the value of the nrRec property.
              * 
              * @param value
              *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TStatus.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TStatus.java
index 34dd52bbd..7023e5e98 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TStatus.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TStatus.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:24 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:52 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Contém o status da solicitação realizada.
  * 
- * 

Classe Java de TStatus complex type. + *

Java class for TStatus complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TStatus">
@@ -54,7 +54,7 @@ public class TStatus {
     protected String descResposta;
 
     /**
-     * Obtém o valor da propriedade cdResposta.
+     * Gets the value of the cdResposta property.
      * 
      */
     public int getCdResposta() {
@@ -62,7 +62,7 @@ public int getCdResposta() {
     }
 
     /**
-     * Define o valor da propriedade cdResposta.
+     * Sets the value of the cdResposta property.
      * 
      */
     public void setCdResposta(int value) {
@@ -70,7 +70,7 @@ public void setCdResposta(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade descResposta.
+     * Gets the value of the descResposta property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public String getDescResposta() {
     }
 
     /**
-     * Define o valor da propriedade descResposta.
+     * Sets the value of the descResposta property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformType.java
index 7e908c570..f4b039e30 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -23,9 +23,9 @@
 
 
 /**
- * 

Classe Java de TransformType complex type. + *

Java class for TransformType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TransformType">
@@ -75,10 +75,10 @@ public class TransformType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * * */ @@ -90,7 +90,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -102,7 +102,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformsType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformsType.java index 933529e68..080b00de0 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformsType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/TransformsType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -17,9 +17,9 @@ /** - *

Classe Java de TransformsType complex type. + *

Java class for TransformsType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TransformsType">
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509DataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509DataType.java
index db1a30758..ec3ea5541 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509DataType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509DataType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 
@@ -21,9 +21,9 @@
 
 
 /**
- * 

Classe Java de X509DataType complex type. + *

Java class for X509DataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="X509DataType">
@@ -53,10 +53,10 @@
 public class X509DataType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlAnyElement(lax = true)
@@ -80,13 +80,13 @@ public class X509DataType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509IssuerSerialType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509IssuerSerialType.java index f2501776f..427c3d54c 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509IssuerSerialType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/X509IssuerSerialType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:25 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:54 AM BRT // @@ -16,9 +16,9 @@ /** - *

Classe Java de X509IssuerSerialType complex type. + *

Java class for X509IssuerSerialType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="X509IssuerSerialType">
@@ -48,7 +48,7 @@ public class X509IssuerSerialType {
     protected BigInteger x509SerialNumber;
 
     /**
-     * Obtém o valor da propriedade x509IssuerName.
+     * Gets the value of the x509IssuerName property.
      * 
      * @return
      *     possible object is
@@ -60,7 +60,7 @@ public String getX509IssuerName() {
     }
 
     /**
-     * Define o valor da propriedade x509IssuerName.
+     * Sets the value of the x509IssuerName property.
      * 
      * @param value
      *     allowed object is
@@ -72,7 +72,7 @@ public void setX509IssuerName(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade x509SerialNumber.
+     * Gets the value of the x509SerialNumber property.
      * 
      * @return
      *     possible object is
@@ -84,7 +84,7 @@ public BigInteger getX509SerialNumber() {
     }
 
     /**
-     * Define o valor da propriedade x509SerialNumber.
+     * Sets the value of the x509SerialNumber property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/package-info.java
index 4eaf312dd..ece341fa5 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/consulta/identificadores/eventos/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:25 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:54 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2000/09/xmldsig#", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/CanonicalizationMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/CanonicalizationMethodType.java
index e0222874e..ca8d4c789 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/CanonicalizationMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/CanonicalizationMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de CanonicalizationMethodType complex type. + *

Java class for CanonicalizationMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="CanonicalizationMethodType">
@@ -83,7 +83,7 @@ public List getContent() {
     }
 
     /**
-     * Obtém o valor da propriedade algorithm.
+     * Gets the value of the algorithm property.
      * 
      * @return
      *     possible object is
@@ -95,7 +95,7 @@ public String getAlgorithm() {
     }
 
     /**
-     * Define o valor da propriedade algorithm.
+     * Sets the value of the algorithm property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DSAKeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DSAKeyValueType.java
index 7e66057d6..c2fd52079 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DSAKeyValueType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DSAKeyValueType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -15,9 +15,9 @@
 
 
 /**
- * 

Classe Java de DSAKeyValueType complex type. + *

Java class for DSAKeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="DSAKeyValueType">
@@ -71,7 +71,7 @@ public class DSAKeyValueType {
     protected byte[] pgenCounter;
 
     /**
-     * Obtém o valor da propriedade p.
+     * Gets the value of the p property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public byte[] getP() {
     }
 
     /**
-     * Define o valor da propriedade p.
+     * Sets the value of the p property.
      * 
      * @param value
      *     allowed object is
@@ -93,7 +93,7 @@ public void setP(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade q.
+     * Gets the value of the q property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public byte[] getQ() {
     }
 
     /**
-     * Define o valor da propriedade q.
+     * Sets the value of the q property.
      * 
      * @param value
      *     allowed object is
@@ -115,7 +115,7 @@ public void setQ(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade g.
+     * Gets the value of the g property.
      * 
      * @return
      *     possible object is
@@ -126,7 +126,7 @@ public byte[] getG() {
     }
 
     /**
-     * Define o valor da propriedade g.
+     * Sets the value of the g property.
      * 
      * @param value
      *     allowed object is
@@ -137,7 +137,7 @@ public void setG(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade y.
+     * Gets the value of the y property.
      * 
      * @return
      *     possible object is
@@ -148,7 +148,7 @@ public byte[] getY() {
     }
 
     /**
-     * Define o valor da propriedade y.
+     * Sets the value of the y property.
      * 
      * @param value
      *     allowed object is
@@ -159,7 +159,7 @@ public void setY(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade j.
+     * Gets the value of the j property.
      * 
      * @return
      *     possible object is
@@ -170,7 +170,7 @@ public byte[] getJ() {
     }
 
     /**
-     * Define o valor da propriedade j.
+     * Sets the value of the j property.
      * 
      * @param value
      *     allowed object is
@@ -181,7 +181,7 @@ public void setJ(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade seed.
+     * Gets the value of the seed property.
      * 
      * @return
      *     possible object is
@@ -192,7 +192,7 @@ public byte[] getSeed() {
     }
 
     /**
-     * Define o valor da propriedade seed.
+     * Sets the value of the seed property.
      * 
      * @param value
      *     allowed object is
@@ -203,7 +203,7 @@ public void setSeed(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade pgenCounter.
+     * Gets the value of the pgenCounter property.
      * 
      * @return
      *     possible object is
@@ -214,7 +214,7 @@ public byte[] getPgenCounter() {
     }
 
     /**
-     * Define o valor da propriedade pgenCounter.
+     * Sets the value of the pgenCounter property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DigestMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DigestMethodType.java
index 03692d5af..66909eb3e 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DigestMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/DigestMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -21,9 +21,9 @@
 
 
 /**
- * 

Classe Java de DigestMethodType complex type. + *

Java class for DigestMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="DigestMethodType">
@@ -71,9 +71,9 @@ public class DigestMethodType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ @@ -85,7 +85,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -97,7 +97,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ESocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ESocial.java index c54ebb8ef..015f9ddac 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ESocial.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ESocial.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:56 AM BRT // @@ -21,9 +21,9 @@ /** - *

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -68,7 +68,7 @@ public class ESocial {
     protected SignatureType signature;
 
     /**
-     * Obtém o valor da propriedade retornoEvento.
+     * Gets the value of the retornoEvento property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public ESocial.RetornoEvento getRetornoEvento() {
     }
 
     /**
-     * Define o valor da propriedade retornoEvento.
+     * Sets the value of the retornoEvento property.
      * 
      * @param value
      *     allowed object is
@@ -92,7 +92,7 @@ public void setRetornoEvento(ESocial.RetornoEvento value) {
     }
 
     /**
-     * Obtém o valor da propriedade signature.
+     * Gets the value of the signature property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public SignatureType getSignature() {
     }
 
     /**
-     * Define o valor da propriedade signature.
+     * Sets the value of the signature property.
      * 
      * @param value
      *     allowed object is
@@ -117,9 +117,9 @@ public void setSignature(SignatureType value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -163,7 +163,7 @@ public static class RetornoEvento {
         protected String id;
 
         /**
-         * Obtém o valor da propriedade ideEmpregador.
+         * Gets the value of the ideEmpregador property.
          * 
          * @return
          *     possible object is
@@ -175,7 +175,7 @@ public TIdeEmpregador getIdeEmpregador() {
         }
 
         /**
-         * Define o valor da propriedade ideEmpregador.
+         * Sets the value of the ideEmpregador property.
          * 
          * @param value
          *     allowed object is
@@ -187,7 +187,7 @@ public void setIdeEmpregador(TIdeEmpregador value) {
         }
 
         /**
-         * Obtém o valor da propriedade recepcao.
+         * Gets the value of the recepcao property.
          * 
          * @return
          *     possible object is
@@ -199,7 +199,7 @@ public TDadosRecepcao getRecepcao() {
         }
 
         /**
-         * Define o valor da propriedade recepcao.
+         * Sets the value of the recepcao property.
          * 
          * @param value
          *     allowed object is
@@ -211,7 +211,7 @@ public void setRecepcao(TDadosRecepcao value) {
         }
 
         /**
-         * Obtém o valor da propriedade processamento.
+         * Gets the value of the processamento property.
          * 
          * @return
          *     possible object is
@@ -223,7 +223,7 @@ public TDadosProcessamentoEvento getProcessamento() {
         }
 
         /**
-         * Define o valor da propriedade processamento.
+         * Sets the value of the processamento property.
          * 
          * @param value
          *     allowed object is
@@ -235,7 +235,7 @@ public void setProcessamento(TDadosProcessamentoEvento value) {
         }
 
         /**
-         * Obtém o valor da propriedade recibo.
+         * Gets the value of the recibo property.
          * 
          * @return
          *     possible object is
@@ -247,7 +247,7 @@ public TDadosRecibo getRecibo() {
         }
 
         /**
-         * Define o valor da propriedade recibo.
+         * Sets the value of the recibo property.
          * 
          * @param value
          *     allowed object is
@@ -259,7 +259,7 @@ public void setRecibo(TDadosRecibo value) {
         }
 
         /**
-         * Obtém o valor da propriedade id.
+         * Gets the value of the id property.
          * 
          * @return
          *     possible object is
@@ -271,7 +271,7 @@ public String getId() {
         }
 
         /**
-         * Define o valor da propriedade id.
+         * Sets the value of the id property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyInfoType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyInfoType.java
index caafe1fbb..81b221fdb 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyInfoType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyInfoType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -27,9 +27,9 @@
 
 
 /**
- * 

Classe Java de KeyInfoType complex type. + *

Java class for KeyInfoType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="KeyInfoType">
@@ -60,13 +60,13 @@
 public class KeyInfoType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
+        @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlMixed
     @XmlAnyElement(lax = true)
@@ -95,16 +95,16 @@ public class KeyInfoType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ @@ -116,7 +116,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -128,7 +128,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyValueType.java index 8c1c6d6e8..0bc38a73e 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyValueType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/KeyValueType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de KeyValueType complex type. + *

Java class for KeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="KeyValueType">
@@ -74,11 +74,11 @@ public class KeyValueType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link String } + * {@link Object } + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ManifestType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ManifestType.java index 7ed4f87d0..91f99251d 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ManifestType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ManifestType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de ManifestType complex type. + *

Java class for ManifestType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ManifestType">
@@ -85,7 +85,7 @@ public List getReference() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -97,7 +97,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectFactory.java
index 178ee3fb6..f3c8a8486 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -56,16 +56,16 @@ public class ObjectFactory {
     private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data");
     private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest");
     private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty");
+    private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength");
+    private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp");
+    private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath");
     private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial");
     private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL");
     private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName");
     private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI");
     private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate");
-    private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength");
-    private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath");
     private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID");
     private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket");
-    private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp");
 
     /**
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.esocialjt.comunicacao.eventos.retorno.evento
@@ -466,6 +466,33 @@ public JAXBElement createSignatureProperty(SignaturePrope
         return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value);
     }
 
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class)
+    public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) {
+        return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class)
+    public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) {
+        return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value));
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class)
+    public JAXBElement createTransformTypeXPath(String value) {
+        return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value);
+    }
+
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}}
      * 
@@ -511,24 +538,6 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) {
         return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
     }
 
-    /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
-     * 
-     */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class)
-    public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) {
-        return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value);
-    }
-
-    /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
-     * 
-     */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class)
-    public JAXBElement createTransformTypeXPath(String value) {
-        return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value);
-    }
-
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
      * 
@@ -547,13 +556,4 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) {
         return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
     }
 
-    /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
-     * 
-     */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class)
-    public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) {
-        return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value));
-    }
-
 }
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectType.java
index e37cec5ca..0421c59e1 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ObjectType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -24,9 +24,9 @@
 
 
 /**
- * 

Classe Java de ObjectType complex type. + *

Java class for ObjectType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ObjectType">
@@ -83,9 +83,9 @@ public class ObjectType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ @@ -97,7 +97,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -109,7 +109,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is @@ -121,7 +121,7 @@ public void setId(String value) { } /** - * Obtém o valor da propriedade mimeType. + * Gets the value of the mimeType property. * * @return * possible object is @@ -133,7 +133,7 @@ public String getMimeType() { } /** - * Define o valor da propriedade mimeType. + * Sets the value of the mimeType property. * * @param value * allowed object is @@ -145,7 +145,7 @@ public void setMimeType(String value) { } /** - * Obtém o valor da propriedade encoding. + * Gets the value of the encoding property. * * @return * possible object is @@ -157,7 +157,7 @@ public String getEncoding() { } /** - * Define o valor da propriedade encoding. + * Sets the value of the encoding property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/PGPDataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/PGPDataType.java index 3351d4fc8..ebd0f00c9 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/PGPDataType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/PGPDataType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -21,9 +21,9 @@ /** - *

Classe Java de PGPDataType complex type. + *

Java class for PGPDataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="PGPDataType">
@@ -54,23 +54,23 @@
 public class PGPDataType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
+        @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlAnyElement(lax = true)
     protected List content;
 
     /**
-     * Obtém o restante do modelo do conteúdo. 
+     * Gets the rest of the content model. 
      * 
      * 

- * Você está obtendo esta propriedade "catch-all" pelo seguinte motivo: - * O nome do campo "PGPKeyPacket" é usado por duas partes diferentes de um esquema. Consulte: - * linha 220 de file:/home/tiago/desenv/git/esocial/src/esocial-comunicacao/src/main/resources/XSD/Eventos/RetornoEvento/xmldsig-core-schema.xsd - * linha 215 de file:/home/tiago/desenv/git/esocial/src/esocial-comunicacao/src/main/resources/XSD/Eventos/RetornoEvento/xmldsig-core-schema.xsd + * You are getting this "catch-all" property because of the following reason: + * The field name "PGPKeyPacket" is used by two different parts of a schema. See: + * line 220 of file:/workspace/src/esocial-comunicacao/src/main/resources/XSD/Eventos/RetornoEvento/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-comunicacao/src/main/resources/XSD/Eventos/RetornoEvento/xmldsig-core-schema.xsd *

- * Para eliminar esta propriedade, aplique uma personalização de propriedade a uma - * das seguintes declarações, a fim de alterar seus nomes: + * To get rid of this property, apply a property customization to one + * of both of the following declarations to change their names: * Gets the value of the content property. * *

@@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } + * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } + * {@link Object } * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RSAKeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RSAKeyValueType.java index 0b97917a0..53d3c6507 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RSAKeyValueType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RSAKeyValueType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -15,9 +15,9 @@ /** - *

Classe Java de RSAKeyValueType complex type. + *

Java class for RSAKeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="RSAKeyValueType">
@@ -47,7 +47,7 @@ public class RSAKeyValueType {
     protected byte[] exponent;
 
     /**
-     * Obtém o valor da propriedade modulus.
+     * Gets the value of the modulus property.
      * 
      * @return
      *     possible object is
@@ -58,7 +58,7 @@ public byte[] getModulus() {
     }
 
     /**
-     * Define o valor da propriedade modulus.
+     * Sets the value of the modulus property.
      * 
      * @param value
      *     allowed object is
@@ -69,7 +69,7 @@ public void setModulus(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade exponent.
+     * Gets the value of the exponent property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public byte[] getExponent() {
     }
 
     /**
-     * Define o valor da propriedade exponent.
+     * Sets the value of the exponent property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ReferenceType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ReferenceType.java
index 2d015a0b7..006433409 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ReferenceType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/ReferenceType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de ReferenceType complex type. + *

Java class for ReferenceType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ReferenceType">
@@ -70,7 +70,7 @@ public class ReferenceType {
     protected String type;
 
     /**
-     * Obtém o valor da propriedade transforms.
+     * Gets the value of the transforms property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public TransformsType getTransforms() {
     }
 
     /**
-     * Define o valor da propriedade transforms.
+     * Sets the value of the transforms property.
      * 
      * @param value
      *     allowed object is
@@ -94,7 +94,7 @@ public void setTransforms(TransformsType value) {
     }
 
     /**
-     * Obtém o valor da propriedade digestMethod.
+     * Gets the value of the digestMethod property.
      * 
      * @return
      *     possible object is
@@ -106,7 +106,7 @@ public DigestMethodType getDigestMethod() {
     }
 
     /**
-     * Define o valor da propriedade digestMethod.
+     * Sets the value of the digestMethod property.
      * 
      * @param value
      *     allowed object is
@@ -118,7 +118,7 @@ public void setDigestMethod(DigestMethodType value) {
     }
 
     /**
-     * Obtém o valor da propriedade digestValue.
+     * Gets the value of the digestValue property.
      * 
      * @return
      *     possible object is
@@ -129,7 +129,7 @@ public byte[] getDigestValue() {
     }
 
     /**
-     * Define o valor da propriedade digestValue.
+     * Sets the value of the digestValue property.
      * 
      * @param value
      *     allowed object is
@@ -140,7 +140,7 @@ public void setDigestValue(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -152,7 +152,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
@@ -164,7 +164,7 @@ public void setId(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade uri.
+     * Gets the value of the uri property.
      * 
      * @return
      *     possible object is
@@ -176,7 +176,7 @@ public String getURI() {
     }
 
     /**
-     * Define o valor da propriedade uri.
+     * Sets the value of the uri property.
      * 
      * @param value
      *     allowed object is
@@ -188,7 +188,7 @@ public void setURI(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade type.
+     * Gets the value of the type property.
      * 
      * @return
      *     possible object is
@@ -200,7 +200,7 @@ public String getType() {
     }
 
     /**
-     * Define o valor da propriedade type.
+     * Sets the value of the type property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RetrievalMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RetrievalMethodType.java
index 413673ed2..00e109e68 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RetrievalMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/RetrievalMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de RetrievalMethodType complex type. + *

Java class for RetrievalMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="RetrievalMethodType">
@@ -53,7 +53,7 @@ public class RetrievalMethodType {
     protected String type;
 
     /**
-     * Obtém o valor da propriedade transforms.
+     * Gets the value of the transforms property.
      * 
      * @return
      *     possible object is
@@ -65,7 +65,7 @@ public TransformsType getTransforms() {
     }
 
     /**
-     * Define o valor da propriedade transforms.
+     * Sets the value of the transforms property.
      * 
      * @param value
      *     allowed object is
@@ -77,7 +77,7 @@ public void setTransforms(TransformsType value) {
     }
 
     /**
-     * Obtém o valor da propriedade uri.
+     * Gets the value of the uri property.
      * 
      * @return
      *     possible object is
@@ -89,7 +89,7 @@ public String getURI() {
     }
 
     /**
-     * Define o valor da propriedade uri.
+     * Sets the value of the uri property.
      * 
      * @param value
      *     allowed object is
@@ -101,7 +101,7 @@ public void setURI(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade type.
+     * Gets the value of the type property.
      * 
      * @return
      *     possible object is
@@ -113,7 +113,7 @@ public String getType() {
     }
 
     /**
-     * Define o valor da propriedade type.
+     * Sets the value of the type property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SPKIDataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SPKIDataType.java
index 7f88f0c3d..ce8383da6 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SPKIDataType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SPKIDataType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de SPKIDataType complex type. + *

Java class for SPKIDataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SPKIDataType">
@@ -67,9 +67,9 @@ public class SPKIDataType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureMethodType.java index b69484dbd..3592c0e58 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureMethodType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureMethodType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -23,9 +23,9 @@ /** - *

Classe Java de SignatureMethodType complex type. + *

Java class for SignatureMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureMethodType">
@@ -76,8 +76,8 @@ public class SignatureMethodType {
      * 

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ @@ -89,7 +89,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -101,7 +101,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertiesType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertiesType.java index fa1342d1d..00a107789 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertiesType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertiesType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de SignaturePropertiesType complex type. + *

Java class for SignaturePropertiesType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignaturePropertiesType">
@@ -85,7 +85,7 @@ public List getSignatureProperty() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -97,7 +97,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertyType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertyType.java
index c2f16bc9a..d3a5f56bd 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertyType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignaturePropertyType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -24,9 +24,9 @@
 
 
 /**
- * 

Classe Java de SignaturePropertyType complex type. + *

Java class for SignaturePropertyType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignaturePropertyType">
@@ -80,9 +80,9 @@ public class SignaturePropertyType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ @@ -94,7 +94,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade target. + * Gets the value of the target property. * * @return * possible object is @@ -106,7 +106,7 @@ public String getTarget() { } /** - * Define o valor da propriedade target. + * Sets the value of the target property. * * @param value * allowed object is @@ -118,7 +118,7 @@ public void setTarget(String value) { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -130,7 +130,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureType.java index 065c363f3..9ccdefe9a 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de SignatureType complex type. + *

Java class for SignatureType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureType">
@@ -68,7 +68,7 @@ public class SignatureType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade signedInfo.
+     * Gets the value of the signedInfo property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public SignedInfoType getSignedInfo() {
     }
 
     /**
-     * Define o valor da propriedade signedInfo.
+     * Sets the value of the signedInfo property.
      * 
      * @param value
      *     allowed object is
@@ -92,7 +92,7 @@ public void setSignedInfo(SignedInfoType value) {
     }
 
     /**
-     * Obtém o valor da propriedade signatureValue.
+     * Gets the value of the signatureValue property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public SignatureValueType getSignatureValue() {
     }
 
     /**
-     * Define o valor da propriedade signatureValue.
+     * Sets the value of the signatureValue property.
      * 
      * @param value
      *     allowed object is
@@ -116,7 +116,7 @@ public void setSignatureValue(SignatureValueType value) {
     }
 
     /**
-     * Obtém o valor da propriedade keyInfo.
+     * Gets the value of the keyInfo property.
      * 
      * @return
      *     possible object is
@@ -128,7 +128,7 @@ public KeyInfoType getKeyInfo() {
     }
 
     /**
-     * Define o valor da propriedade keyInfo.
+     * Sets the value of the keyInfo property.
      * 
      * @param value
      *     allowed object is
@@ -169,7 +169,7 @@ public List getObject() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -181,7 +181,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureValueType.java
index b7fa13763..8491adc6f 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureValueType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignatureValueType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de SignatureValueType complex type. + *

Java class for SignatureValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureValueType">
@@ -51,7 +51,7 @@ public class SignatureValueType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade value.
+     * Gets the value of the value property.
      * 
      * @return
      *     possible object is
@@ -62,7 +62,7 @@ public byte[] getValue() {
     }
 
     /**
-     * Define o valor da propriedade value.
+     * Sets the value of the value property.
      * 
      * @param value
      *     allowed object is
@@ -73,7 +73,7 @@ public void setValue(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -85,7 +85,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignedInfoType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignedInfoType.java
index 87df9d119..91b3d06c0 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignedInfoType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/SignedInfoType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -22,9 +22,9 @@
 
 
 /**
- * 

Classe Java de SignedInfoType complex type. + *

Java class for SignedInfoType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignedInfoType">
@@ -64,7 +64,7 @@ public class SignedInfoType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade canonicalizationMethod.
+     * Gets the value of the canonicalizationMethod property.
      * 
      * @return
      *     possible object is
@@ -76,7 +76,7 @@ public CanonicalizationMethodType getCanonicalizationMethod() {
     }
 
     /**
-     * Define o valor da propriedade canonicalizationMethod.
+     * Sets the value of the canonicalizationMethod property.
      * 
      * @param value
      *     allowed object is
@@ -88,7 +88,7 @@ public void setCanonicalizationMethod(CanonicalizationMethodType value) {
     }
 
     /**
-     * Obtém o valor da propriedade signatureMethod.
+     * Gets the value of the signatureMethod property.
      * 
      * @return
      *     possible object is
@@ -100,7 +100,7 @@ public SignatureMethodType getSignatureMethod() {
     }
 
     /**
-     * Define o valor da propriedade signatureMethod.
+     * Sets the value of the signatureMethod property.
      * 
      * @param value
      *     allowed object is
@@ -141,7 +141,7 @@ public List getReference() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -153,7 +153,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosProcessamentoEvento.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosProcessamentoEvento.java
index 24db8f76c..83bf5841f 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosProcessamentoEvento.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosProcessamentoEvento.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:56 AM BRT 
 //
 
 
@@ -19,9 +19,9 @@
 /**
  * Define os dados de processamento dos eventos
  * 
- * 

Classe Java de TDadosProcessamentoEvento complex type. + *

Java class for TDadosProcessamentoEvento complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TDadosProcessamentoEvento">
@@ -74,7 +74,7 @@ public class TDadosProcessamentoEvento {
     protected TOcorrencias ocorrencias;
 
     /**
-     * Obtém o valor da propriedade cdResposta.
+     * Gets the value of the cdResposta property.
      * 
      */
     public int getCdResposta() {
@@ -82,7 +82,7 @@ public int getCdResposta() {
     }
 
     /**
-     * Define o valor da propriedade cdResposta.
+     * Sets the value of the cdResposta property.
      * 
      */
     public void setCdResposta(int value) {
@@ -90,7 +90,7 @@ public void setCdResposta(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade descResposta.
+     * Gets the value of the descResposta property.
      * 
      * @return
      *     possible object is
@@ -102,7 +102,7 @@ public String getDescResposta() {
     }
 
     /**
-     * Define o valor da propriedade descResposta.
+     * Sets the value of the descResposta property.
      * 
      * @param value
      *     allowed object is
@@ -114,7 +114,7 @@ public void setDescResposta(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade versaoAppProcessamento.
+     * Gets the value of the versaoAppProcessamento property.
      * 
      * @return
      *     possible object is
@@ -126,7 +126,7 @@ public String getVersaoAppProcessamento() {
     }
 
     /**
-     * Define o valor da propriedade versaoAppProcessamento.
+     * Sets the value of the versaoAppProcessamento property.
      * 
      * @param value
      *     allowed object is
@@ -138,7 +138,7 @@ public void setVersaoAppProcessamento(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade dhProcessamento.
+     * Gets the value of the dhProcessamento property.
      * 
      * @return
      *     possible object is
@@ -150,7 +150,7 @@ public XMLGregorianCalendar getDhProcessamento() {
     }
 
     /**
-     * Define o valor da propriedade dhProcessamento.
+     * Sets the value of the dhProcessamento property.
      * 
      * @param value
      *     allowed object is
@@ -162,7 +162,7 @@ public void setDhProcessamento(XMLGregorianCalendar value) {
     }
 
     /**
-     * Obtém o valor da propriedade ocorrencias.
+     * Gets the value of the ocorrencias property.
      * 
      * @return
      *     possible object is
@@ -174,7 +174,7 @@ public TOcorrencias getOcorrencias() {
     }
 
     /**
-     * Define o valor da propriedade ocorrencias.
+     * Sets the value of the ocorrencias property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecepcao.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecepcao.java
index a98100ddf..9b9179462 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecepcao.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecepcao.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:56 AM BRT 
 //
 
 
@@ -19,9 +19,9 @@
 /**
  * Define os dados de recepção do evento.
  * 
- * 

Classe Java de TDadosRecepcao complex type. + *

Java class for TDadosRecepcao complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TDadosRecepcao">
@@ -71,7 +71,7 @@ public class TDadosRecepcao {
     protected String protocoloEnvioLote;
 
     /**
-     * Obtém o valor da propriedade tpAmb.
+     * Gets the value of the tpAmb property.
      * 
      */
     public short getTpAmb() {
@@ -79,7 +79,7 @@ public short getTpAmb() {
     }
 
     /**
-     * Define o valor da propriedade tpAmb.
+     * Sets the value of the tpAmb property.
      * 
      */
     public void setTpAmb(short value) {
@@ -87,7 +87,7 @@ public void setTpAmb(short value) {
     }
 
     /**
-     * Obtém o valor da propriedade dhRecepcao.
+     * Gets the value of the dhRecepcao property.
      * 
      * @return
      *     possible object is
@@ -99,7 +99,7 @@ public XMLGregorianCalendar getDhRecepcao() {
     }
 
     /**
-     * Define o valor da propriedade dhRecepcao.
+     * Sets the value of the dhRecepcao property.
      * 
      * @param value
      *     allowed object is
@@ -111,7 +111,7 @@ public void setDhRecepcao(XMLGregorianCalendar value) {
     }
 
     /**
-     * Obtém o valor da propriedade versaoAppRecepcao.
+     * Gets the value of the versaoAppRecepcao property.
      * 
      * @return
      *     possible object is
@@ -123,7 +123,7 @@ public String getVersaoAppRecepcao() {
     }
 
     /**
-     * Define o valor da propriedade versaoAppRecepcao.
+     * Sets the value of the versaoAppRecepcao property.
      * 
      * @param value
      *     allowed object is
@@ -135,7 +135,7 @@ public void setVersaoAppRecepcao(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade protocoloEnvioLote.
+     * Gets the value of the protocoloEnvioLote property.
      * 
      * @return
      *     possible object is
@@ -147,7 +147,7 @@ public String getProtocoloEnvioLote() {
     }
 
     /**
-     * Define o valor da propriedade protocoloEnvioLote.
+     * Sets the value of the protocoloEnvioLote property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecibo.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecibo.java
index f829ef06e..cf48a3200 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecibo.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TDadosRecibo.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:56 AM BRT 
 //
 
 
@@ -22,9 +22,9 @@
 /**
  * Define os dados do recibo do evento.
  * 
- * 

Classe Java de TDadosRecibo complex type. + *

Java class for TDadosRecibo complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TDadosRecibo">
@@ -265,7 +265,7 @@ public class TDadosRecibo {
     protected TDadosRecibo.Contrato contrato;
 
     /**
-     * Obtém o valor da propriedade nrRecibo.
+     * Gets the value of the nrRecibo property.
      * 
      * @return
      *     possible object is
@@ -277,7 +277,7 @@ public String getNrRecibo() {
     }
 
     /**
-     * Define o valor da propriedade nrRecibo.
+     * Sets the value of the nrRecibo property.
      * 
      * @param value
      *     allowed object is
@@ -289,7 +289,7 @@ public void setNrRecibo(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade hash.
+     * Gets the value of the hash property.
      * 
      * @return
      *     possible object is
@@ -301,7 +301,7 @@ public String getHash() {
     }
 
     /**
-     * Define o valor da propriedade hash.
+     * Sets the value of the hash property.
      * 
      * @param value
      *     allowed object is
@@ -313,7 +313,7 @@ public void setHash(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade contrato.
+     * Gets the value of the contrato property.
      * 
      * @return
      *     possible object is
@@ -325,7 +325,7 @@ public TDadosRecibo.Contrato getContrato() {
     }
 
     /**
-     * Define o valor da propriedade contrato.
+     * Sets the value of the contrato property.
      * 
      * @param value
      *     allowed object is
@@ -338,9 +338,9 @@ public void setContrato(TDadosRecibo.Contrato value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -588,7 +588,7 @@ public static class Contrato {
         protected TDadosRecibo.Contrato.HorContratual horContratual;
 
         /**
-         * Obtém o valor da propriedade ideEmpregador.
+         * Gets the value of the ideEmpregador property.
          * 
          * @return
          *     possible object is
@@ -600,7 +600,7 @@ public TDadosRecibo.Contrato.IdeEmpregador getIdeEmpregador() {
         }
 
         /**
-         * Define o valor da propriedade ideEmpregador.
+         * Sets the value of the ideEmpregador property.
          * 
          * @param value
          *     allowed object is
@@ -612,7 +612,7 @@ public void setIdeEmpregador(TDadosRecibo.Contrato.IdeEmpregador value) {
         }
 
         /**
-         * Obtém o valor da propriedade trabalhador.
+         * Gets the value of the trabalhador property.
          * 
          * @return
          *     possible object is
@@ -624,7 +624,7 @@ public TDadosRecibo.Contrato.Trabalhador getTrabalhador() {
         }
 
         /**
-         * Define o valor da propriedade trabalhador.
+         * Sets the value of the trabalhador property.
          * 
          * @param value
          *     allowed object is
@@ -636,7 +636,7 @@ public void setTrabalhador(TDadosRecibo.Contrato.Trabalhador value) {
         }
 
         /**
-         * Obtém o valor da propriedade infoDeficiencia.
+         * Gets the value of the infoDeficiencia property.
          * 
          * @return
          *     possible object is
@@ -648,7 +648,7 @@ public TDadosRecibo.Contrato.InfoDeficiencia getInfoDeficiencia() {
         }
 
         /**
-         * Define o valor da propriedade infoDeficiencia.
+         * Sets the value of the infoDeficiencia property.
          * 
          * @param value
          *     allowed object is
@@ -660,7 +660,7 @@ public void setInfoDeficiencia(TDadosRecibo.Contrato.InfoDeficiencia value) {
         }
 
         /**
-         * Obtém o valor da propriedade vinculo.
+         * Gets the value of the vinculo property.
          * 
          * @return
          *     possible object is
@@ -672,7 +672,7 @@ public TDadosRecibo.Contrato.Vinculo getVinculo() {
         }
 
         /**
-         * Define o valor da propriedade vinculo.
+         * Sets the value of the vinculo property.
          * 
          * @param value
          *     allowed object is
@@ -684,7 +684,7 @@ public void setVinculo(TDadosRecibo.Contrato.Vinculo value) {
         }
 
         /**
-         * Obtém o valor da propriedade infoCeletista.
+         * Gets the value of the infoCeletista property.
          * 
          * @return
          *     possible object is
@@ -696,7 +696,7 @@ public TDadosRecibo.Contrato.InfoCeletista getInfoCeletista() {
         }
 
         /**
-         * Define o valor da propriedade infoCeletista.
+         * Sets the value of the infoCeletista property.
          * 
          * @param value
          *     allowed object is
@@ -708,7 +708,7 @@ public void setInfoCeletista(TDadosRecibo.Contrato.InfoCeletista value) {
         }
 
         /**
-         * Obtém o valor da propriedade infoEstatutario.
+         * Gets the value of the infoEstatutario property.
          * 
          * @return
          *     possible object is
@@ -720,7 +720,7 @@ public TDadosRecibo.Contrato.InfoEstatutario getInfoEstatutario() {
         }
 
         /**
-         * Define o valor da propriedade infoEstatutario.
+         * Sets the value of the infoEstatutario property.
          * 
          * @param value
          *     allowed object is
@@ -732,7 +732,7 @@ public void setInfoEstatutario(TDadosRecibo.Contrato.InfoEstatutario value) {
         }
 
         /**
-         * Obtém o valor da propriedade infoContrato.
+         * Gets the value of the infoContrato property.
          * 
          * @return
          *     possible object is
@@ -744,7 +744,7 @@ public TDadosRecibo.Contrato.InfoContrato getInfoContrato() {
         }
 
         /**
-         * Define o valor da propriedade infoContrato.
+         * Sets the value of the infoContrato property.
          * 
          * @param value
          *     allowed object is
@@ -756,7 +756,7 @@ public void setInfoContrato(TDadosRecibo.Contrato.InfoContrato value) {
         }
 
         /**
-         * Obtém o valor da propriedade remuneracao.
+         * Gets the value of the remuneracao property.
          * 
          * @return
          *     possible object is
@@ -768,7 +768,7 @@ public TDadosRecibo.Contrato.Remuneracao getRemuneracao() {
         }
 
         /**
-         * Define o valor da propriedade remuneracao.
+         * Sets the value of the remuneracao property.
          * 
          * @param value
          *     allowed object is
@@ -780,7 +780,7 @@ public void setRemuneracao(TDadosRecibo.Contrato.Remuneracao value) {
         }
 
         /**
-         * Obtém o valor da propriedade duracao.
+         * Gets the value of the duracao property.
          * 
          * @return
          *     possible object is
@@ -792,7 +792,7 @@ public TDadosRecibo.Contrato.Duracao getDuracao() {
         }
 
         /**
-         * Define o valor da propriedade duracao.
+         * Sets the value of the duracao property.
          * 
          * @param value
          *     allowed object is
@@ -804,7 +804,7 @@ public void setDuracao(TDadosRecibo.Contrato.Duracao value) {
         }
 
         /**
-         * Obtém o valor da propriedade localTrabGeral.
+         * Gets the value of the localTrabGeral property.
          * 
          * @return
          *     possible object is
@@ -816,7 +816,7 @@ public TDadosRecibo.Contrato.LocalTrabGeral getLocalTrabGeral() {
         }
 
         /**
-         * Define o valor da propriedade localTrabGeral.
+         * Sets the value of the localTrabGeral property.
          * 
          * @param value
          *     allowed object is
@@ -828,7 +828,7 @@ public void setLocalTrabGeral(TDadosRecibo.Contrato.LocalTrabGeral value) {
         }
 
         /**
-         * Obtém o valor da propriedade horContratual.
+         * Gets the value of the horContratual property.
          * 
          * @return
          *     possible object is
@@ -840,7 +840,7 @@ public TDadosRecibo.Contrato.HorContratual getHorContratual() {
         }
 
         /**
-         * Define o valor da propriedade horContratual.
+         * Sets the value of the horContratual property.
          * 
          * @param value
          *     allowed object is
@@ -853,9 +853,9 @@ public void setHorContratual(TDadosRecibo.Contrato.HorContratual value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -890,7 +890,7 @@ public static class Duracao {
             protected String clauAsseg;
 
             /**
-             * Obtém o valor da propriedade tpContr.
+             * Gets the value of the tpContr property.
              * 
              */
             public byte getTpContr() {
@@ -898,7 +898,7 @@ public byte getTpContr() {
             }
 
             /**
-             * Define o valor da propriedade tpContr.
+             * Sets the value of the tpContr property.
              * 
              */
             public void setTpContr(byte value) {
@@ -906,7 +906,7 @@ public void setTpContr(byte value) {
             }
 
             /**
-             * Obtém o valor da propriedade dtTerm.
+             * Gets the value of the dtTerm property.
              * 
              * @return
              *     possible object is
@@ -918,7 +918,7 @@ public XMLGregorianCalendar getDtTerm() {
             }
 
             /**
-             * Define o valor da propriedade dtTerm.
+             * Sets the value of the dtTerm property.
              * 
              * @param value
              *     allowed object is
@@ -930,7 +930,7 @@ public void setDtTerm(XMLGregorianCalendar value) {
             }
 
             /**
-             * Obtém o valor da propriedade clauAsseg.
+             * Gets the value of the clauAsseg property.
              * 
              * @return
              *     possible object is
@@ -942,7 +942,7 @@ public String getClauAsseg() {
             }
 
             /**
-             * Define o valor da propriedade clauAsseg.
+             * Sets the value of the clauAsseg property.
              * 
              * @param value
              *     allowed object is
@@ -957,9 +957,9 @@ public void setClauAsseg(String value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -1030,7 +1030,7 @@ public static class HorContratual {
             protected List horario;
 
             /**
-             * Obtém o valor da propriedade qtdHrsSem.
+             * Gets the value of the qtdHrsSem property.
              * 
              * @return
              *     possible object is
@@ -1042,7 +1042,7 @@ public BigDecimal getQtdHrsSem() {
             }
 
             /**
-             * Define o valor da propriedade qtdHrsSem.
+             * Sets the value of the qtdHrsSem property.
              * 
              * @param value
              *     allowed object is
@@ -1054,7 +1054,7 @@ public void setQtdHrsSem(BigDecimal value) {
             }
 
             /**
-             * Obtém o valor da propriedade tpJornada.
+             * Gets the value of the tpJornada property.
              * 
              */
             public byte getTpJornada() {
@@ -1062,7 +1062,7 @@ public byte getTpJornada() {
             }
 
             /**
-             * Define o valor da propriedade tpJornada.
+             * Sets the value of the tpJornada property.
              * 
              */
             public void setTpJornada(byte value) {
@@ -1070,7 +1070,7 @@ public void setTpJornada(byte value) {
             }
 
             /**
-             * Obtém o valor da propriedade dscTpJorn.
+             * Gets the value of the dscTpJorn property.
              * 
              * @return
              *     possible object is
@@ -1082,7 +1082,7 @@ public String getDscTpJorn() {
             }
 
             /**
-             * Define o valor da propriedade dscTpJorn.
+             * Sets the value of the dscTpJorn property.
              * 
              * @param value
              *     allowed object is
@@ -1094,7 +1094,7 @@ public void setDscTpJorn(String value) {
             }
 
             /**
-             * Obtém o valor da propriedade tmpParc.
+             * Gets the value of the tmpParc property.
              * 
              * @return
              *     possible object is
@@ -1106,7 +1106,7 @@ public String getTmpParc() {
             }
 
             /**
-             * Define o valor da propriedade tmpParc.
+             * Sets the value of the tmpParc property.
              * 
              * @param value
              *     allowed object is
@@ -1148,9 +1148,9 @@ public List getHorario() {
 
 
             /**
-             * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

              * <complexType>
@@ -1213,7 +1213,7 @@ public static class Horario {
                 protected List horarioIntervalo;
 
                 /**
-                 * Obtém o valor da propriedade dia.
+                 * Gets the value of the dia property.
                  * 
                  */
                 public byte getDia() {
@@ -1221,7 +1221,7 @@ public byte getDia() {
                 }
 
                 /**
-                 * Define o valor da propriedade dia.
+                 * Sets the value of the dia property.
                  * 
                  */
                 public void setDia(byte value) {
@@ -1229,7 +1229,7 @@ public void setDia(byte value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade codHorContrat.
+                 * Gets the value of the codHorContrat property.
                  * 
                  * @return
                  *     possible object is
@@ -1241,7 +1241,7 @@ public String getCodHorContrat() {
                 }
 
                 /**
-                 * Define o valor da propriedade codHorContrat.
+                 * Sets the value of the codHorContrat property.
                  * 
                  * @param value
                  *     allowed object is
@@ -1253,7 +1253,7 @@ public void setCodHorContrat(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade hrEntr.
+                 * Gets the value of the hrEntr property.
                  * 
                  * @return
                  *     possible object is
@@ -1265,7 +1265,7 @@ public String getHrEntr() {
                 }
 
                 /**
-                 * Define o valor da propriedade hrEntr.
+                 * Sets the value of the hrEntr property.
                  * 
                  * @param value
                  *     allowed object is
@@ -1277,7 +1277,7 @@ public void setHrEntr(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade hrSaida.
+                 * Gets the value of the hrSaida property.
                  * 
                  * @return
                  *     possible object is
@@ -1289,7 +1289,7 @@ public String getHrSaida() {
                 }
 
                 /**
-                 * Define o valor da propriedade hrSaida.
+                 * Sets the value of the hrSaida property.
                  * 
                  * @param value
                  *     allowed object is
@@ -1301,7 +1301,7 @@ public void setHrSaida(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade durJornada.
+                 * Gets the value of the durJornada property.
                  * 
                  */
                 public int getDurJornada() {
@@ -1309,7 +1309,7 @@ public int getDurJornada() {
                 }
 
                 /**
-                 * Define o valor da propriedade durJornada.
+                 * Sets the value of the durJornada property.
                  * 
                  */
                 public void setDurJornada(int value) {
@@ -1317,7 +1317,7 @@ public void setDurJornada(int value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade perHorFlexivel.
+                 * Gets the value of the perHorFlexivel property.
                  * 
                  * @return
                  *     possible object is
@@ -1329,7 +1329,7 @@ public String getPerHorFlexivel() {
                 }
 
                 /**
-                 * Define o valor da propriedade perHorFlexivel.
+                 * Sets the value of the perHorFlexivel property.
                  * 
                  * @param value
                  *     allowed object is
@@ -1371,9 +1371,9 @@ public List getHor
 
 
                 /**
-                 * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

                  * <complexType>
@@ -1411,7 +1411,7 @@ public static class HorarioIntervalo {
                     protected String termInterv;
 
                     /**
-                     * Obtém o valor da propriedade tpInterv.
+                     * Gets the value of the tpInterv property.
                      * 
                      */
                     public byte getTpInterv() {
@@ -1419,7 +1419,7 @@ public byte getTpInterv() {
                     }
 
                     /**
-                     * Define o valor da propriedade tpInterv.
+                     * Sets the value of the tpInterv property.
                      * 
                      */
                     public void setTpInterv(byte value) {
@@ -1427,7 +1427,7 @@ public void setTpInterv(byte value) {
                     }
 
                     /**
-                     * Obtém o valor da propriedade durInterv.
+                     * Gets the value of the durInterv property.
                      * 
                      */
                     public int getDurInterv() {
@@ -1435,7 +1435,7 @@ public int getDurInterv() {
                     }
 
                     /**
-                     * Define o valor da propriedade durInterv.
+                     * Sets the value of the durInterv property.
                      * 
                      */
                     public void setDurInterv(int value) {
@@ -1443,7 +1443,7 @@ public void setDurInterv(int value) {
                     }
 
                     /**
-                     * Obtém o valor da propriedade iniInterv.
+                     * Gets the value of the iniInterv property.
                      * 
                      * @return
                      *     possible object is
@@ -1455,7 +1455,7 @@ public String getIniInterv() {
                     }
 
                     /**
-                     * Define o valor da propriedade iniInterv.
+                     * Sets the value of the iniInterv property.
                      * 
                      * @param value
                      *     allowed object is
@@ -1467,7 +1467,7 @@ public void setIniInterv(String value) {
                     }
 
                     /**
-                     * Obtém o valor da propriedade termInterv.
+                     * Gets the value of the termInterv property.
                      * 
                      * @return
                      *     possible object is
@@ -1479,7 +1479,7 @@ public String getTermInterv() {
                     }
 
                     /**
-                     * Define o valor da propriedade termInterv.
+                     * Sets the value of the termInterv property.
                      * 
                      * @param value
                      *     allowed object is
@@ -1498,9 +1498,9 @@ public void setTermInterv(String value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -1530,7 +1530,7 @@ public static class IdeEmpregador {
             protected long nrInsc;
 
             /**
-             * Obtém o valor da propriedade tpInsc.
+             * Gets the value of the tpInsc property.
              * 
              */
             public byte getTpInsc() {
@@ -1538,7 +1538,7 @@ public byte getTpInsc() {
             }
 
             /**
-             * Define o valor da propriedade tpInsc.
+             * Sets the value of the tpInsc property.
              * 
              */
             public void setTpInsc(byte value) {
@@ -1546,7 +1546,7 @@ public void setTpInsc(byte value) {
             }
 
             /**
-             * Obtém o valor da propriedade nrInsc.
+             * Gets the value of the nrInsc property.
              * 
              */
             public long getNrInsc() {
@@ -1554,7 +1554,7 @@ public long getNrInsc() {
             }
 
             /**
-             * Define o valor da propriedade nrInsc.
+             * Sets the value of the nrInsc property.
              * 
              */
             public void setNrInsc(long value) {
@@ -1565,9 +1565,9 @@ public void setNrInsc(long value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -1606,7 +1606,7 @@ public static class InfoCeletista {
             protected long cnpjSindCategProf;
 
             /**
-             * Obtém o valor da propriedade dtAdm.
+             * Gets the value of the dtAdm property.
              * 
              * @return
              *     possible object is
@@ -1618,7 +1618,7 @@ public XMLGregorianCalendar getDtAdm() {
             }
 
             /**
-             * Define o valor da propriedade dtAdm.
+             * Sets the value of the dtAdm property.
              * 
              * @param value
              *     allowed object is
@@ -1630,7 +1630,7 @@ public void setDtAdm(XMLGregorianCalendar value) {
             }
 
             /**
-             * Obtém o valor da propriedade tpRegJor.
+             * Gets the value of the tpRegJor property.
              * 
              */
             public byte getTpRegJor() {
@@ -1638,7 +1638,7 @@ public byte getTpRegJor() {
             }
 
             /**
-             * Define o valor da propriedade tpRegJor.
+             * Sets the value of the tpRegJor property.
              * 
              */
             public void setTpRegJor(byte value) {
@@ -1646,7 +1646,7 @@ public void setTpRegJor(byte value) {
             }
 
             /**
-             * Obtém o valor da propriedade dtBase.
+             * Gets the value of the dtBase property.
              * 
              * @return
              *     possible object is
@@ -1658,7 +1658,7 @@ public Integer getDtBase() {
             }
 
             /**
-             * Define o valor da propriedade dtBase.
+             * Sets the value of the dtBase property.
              * 
              * @param value
              *     allowed object is
@@ -1670,7 +1670,7 @@ public void setDtBase(Integer value) {
             }
 
             /**
-             * Obtém o valor da propriedade cnpjSindCategProf.
+             * Gets the value of the cnpjSindCategProf property.
              * 
              */
             public long getCnpjSindCategProf() {
@@ -1678,7 +1678,7 @@ public long getCnpjSindCategProf() {
             }
 
             /**
-             * Define o valor da propriedade cnpjSindCategProf.
+             * Sets the value of the cnpjSindCategProf property.
              * 
              */
             public void setCnpjSindCategProf(long value) {
@@ -1689,9 +1689,9 @@ public void setCnpjSindCategProf(long value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -1749,7 +1749,7 @@ public static class InfoContrato {
             protected int codCateg;
 
             /**
-             * Obtém o valor da propriedade cargo.
+             * Gets the value of the cargo property.
              * 
              * @return
              *     possible object is
@@ -1761,7 +1761,7 @@ public TDadosRecibo.Contrato.InfoContrato.Cargo getCargo() {
             }
 
             /**
-             * Define o valor da propriedade cargo.
+             * Sets the value of the cargo property.
              * 
              * @param value
              *     allowed object is
@@ -1773,7 +1773,7 @@ public void setCargo(TDadosRecibo.Contrato.InfoContrato.Cargo value) {
             }
 
             /**
-             * Obtém o valor da propriedade funcao.
+             * Gets the value of the funcao property.
              * 
              * @return
              *     possible object is
@@ -1785,7 +1785,7 @@ public TDadosRecibo.Contrato.InfoContrato.Funcao getFuncao() {
             }
 
             /**
-             * Define o valor da propriedade funcao.
+             * Sets the value of the funcao property.
              * 
              * @param value
              *     allowed object is
@@ -1797,7 +1797,7 @@ public void setFuncao(TDadosRecibo.Contrato.InfoContrato.Funcao value) {
             }
 
             /**
-             * Obtém o valor da propriedade codCateg.
+             * Gets the value of the codCateg property.
              * 
              */
             public int getCodCateg() {
@@ -1805,7 +1805,7 @@ public int getCodCateg() {
             }
 
             /**
-             * Define o valor da propriedade codCateg.
+             * Sets the value of the codCateg property.
              * 
              */
             public void setCodCateg(int value) {
@@ -1814,9 +1814,9 @@ public void setCodCateg(int value) {
 
 
             /**
-             * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

              * <complexType>
@@ -1850,7 +1850,7 @@ public static class Cargo {
                 protected int codCBO;
 
                 /**
-                 * Obtém o valor da propriedade codCargo.
+                 * Gets the value of the codCargo property.
                  * 
                  * @return
                  *     possible object is
@@ -1862,7 +1862,7 @@ public String getCodCargo() {
                 }
 
                 /**
-                 * Define o valor da propriedade codCargo.
+                 * Sets the value of the codCargo property.
                  * 
                  * @param value
                  *     allowed object is
@@ -1874,7 +1874,7 @@ public void setCodCargo(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade nmCargo.
+                 * Gets the value of the nmCargo property.
                  * 
                  * @return
                  *     possible object is
@@ -1886,7 +1886,7 @@ public String getNmCargo() {
                 }
 
                 /**
-                 * Define o valor da propriedade nmCargo.
+                 * Sets the value of the nmCargo property.
                  * 
                  * @param value
                  *     allowed object is
@@ -1898,7 +1898,7 @@ public void setNmCargo(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade codCBO.
+                 * Gets the value of the codCBO property.
                  * 
                  */
                 public int getCodCBO() {
@@ -1906,7 +1906,7 @@ public int getCodCBO() {
                 }
 
                 /**
-                 * Define o valor da propriedade codCBO.
+                 * Sets the value of the codCBO property.
                  * 
                  */
                 public void setCodCBO(int value) {
@@ -1917,9 +1917,9 @@ public void setCodCBO(int value) {
 
 
             /**
-             * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

              * <complexType>
@@ -1953,7 +1953,7 @@ public static class Funcao {
                 protected int codCBO;
 
                 /**
-                 * Obtém o valor da propriedade codFuncao.
+                 * Gets the value of the codFuncao property.
                  * 
                  * @return
                  *     possible object is
@@ -1965,7 +1965,7 @@ public String getCodFuncao() {
                 }
 
                 /**
-                 * Define o valor da propriedade codFuncao.
+                 * Sets the value of the codFuncao property.
                  * 
                  * @param value
                  *     allowed object is
@@ -1977,7 +1977,7 @@ public void setCodFuncao(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade dscFuncao.
+                 * Gets the value of the dscFuncao property.
                  * 
                  * @return
                  *     possible object is
@@ -1989,7 +1989,7 @@ public String getDscFuncao() {
                 }
 
                 /**
-                 * Define o valor da propriedade dscFuncao.
+                 * Sets the value of the dscFuncao property.
                  * 
                  * @param value
                  *     allowed object is
@@ -2001,7 +2001,7 @@ public void setDscFuncao(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade codCBO.
+                 * Gets the value of the codCBO property.
                  * 
                  */
                 public int getCodCBO() {
@@ -2009,7 +2009,7 @@ public int getCodCBO() {
                 }
 
                 /**
-                 * Define o valor da propriedade codCBO.
+                 * Sets the value of the codCBO property.
                  * 
                  */
                 public void setCodCBO(int value) {
@@ -2022,9 +2022,9 @@ public void setCodCBO(int value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -2050,7 +2050,7 @@ public static class InfoDeficiencia {
             protected String infoCota;
 
             /**
-             * Obtém o valor da propriedade infoCota.
+             * Gets the value of the infoCota property.
              * 
              * @return
              *     possible object is
@@ -2062,7 +2062,7 @@ public String getInfoCota() {
             }
 
             /**
-             * Define o valor da propriedade infoCota.
+             * Sets the value of the infoCota property.
              * 
              * @param value
              *     allowed object is
@@ -2077,9 +2077,9 @@ public void setInfoCota(String value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -2111,7 +2111,7 @@ public static class InfoEstatutario {
             protected XMLGregorianCalendar dtExercicio;
 
             /**
-             * Obtém o valor da propriedade dtPosse.
+             * Gets the value of the dtPosse property.
              * 
              * @return
              *     possible object is
@@ -2123,7 +2123,7 @@ public XMLGregorianCalendar getDtPosse() {
             }
 
             /**
-             * Define o valor da propriedade dtPosse.
+             * Sets the value of the dtPosse property.
              * 
              * @param value
              *     allowed object is
@@ -2135,7 +2135,7 @@ public void setDtPosse(XMLGregorianCalendar value) {
             }
 
             /**
-             * Obtém o valor da propriedade dtExercicio.
+             * Gets the value of the dtExercicio property.
              * 
              * @return
              *     possible object is
@@ -2147,7 +2147,7 @@ public XMLGregorianCalendar getDtExercicio() {
             }
 
             /**
-             * Define o valor da propriedade dtExercicio.
+             * Sets the value of the dtExercicio property.
              * 
              * @param value
              *     allowed object is
@@ -2162,9 +2162,9 @@ public void setDtExercicio(XMLGregorianCalendar value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -2198,7 +2198,7 @@ public static class LocalTrabGeral {
             protected long cnae;
 
             /**
-             * Obtém o valor da propriedade tpInsc.
+             * Gets the value of the tpInsc property.
              * 
              */
             public byte getTpInsc() {
@@ -2206,7 +2206,7 @@ public byte getTpInsc() {
             }
 
             /**
-             * Define o valor da propriedade tpInsc.
+             * Sets the value of the tpInsc property.
              * 
              */
             public void setTpInsc(byte value) {
@@ -2214,7 +2214,7 @@ public void setTpInsc(byte value) {
             }
 
             /**
-             * Obtém o valor da propriedade nrInsc.
+             * Gets the value of the nrInsc property.
              * 
              */
             public long getNrInsc() {
@@ -2222,7 +2222,7 @@ public long getNrInsc() {
             }
 
             /**
-             * Define o valor da propriedade nrInsc.
+             * Sets the value of the nrInsc property.
              * 
              */
             public void setNrInsc(long value) {
@@ -2230,7 +2230,7 @@ public void setNrInsc(long value) {
             }
 
             /**
-             * Obtém o valor da propriedade cnae.
+             * Gets the value of the cnae property.
              * 
              */
             public long getCnae() {
@@ -2238,7 +2238,7 @@ public long getCnae() {
             }
 
             /**
-             * Define o valor da propriedade cnae.
+             * Sets the value of the cnae property.
              * 
              */
             public void setCnae(long value) {
@@ -2249,9 +2249,9 @@ public void setCnae(long value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -2285,7 +2285,7 @@ public static class Remuneracao {
             protected String dscSalVar;
 
             /**
-             * Obtém o valor da propriedade vrSalFx.
+             * Gets the value of the vrSalFx property.
              * 
              * @return
              *     possible object is
@@ -2297,7 +2297,7 @@ public BigDecimal getVrSalFx() {
             }
 
             /**
-             * Define o valor da propriedade vrSalFx.
+             * Sets the value of the vrSalFx property.
              * 
              * @param value
              *     allowed object is
@@ -2309,7 +2309,7 @@ public void setVrSalFx(BigDecimal value) {
             }
 
             /**
-             * Obtém o valor da propriedade undSalFixo.
+             * Gets the value of the undSalFixo property.
              * 
              */
             public byte getUndSalFixo() {
@@ -2317,7 +2317,7 @@ public byte getUndSalFixo() {
             }
 
             /**
-             * Define o valor da propriedade undSalFixo.
+             * Sets the value of the undSalFixo property.
              * 
              */
             public void setUndSalFixo(byte value) {
@@ -2325,7 +2325,7 @@ public void setUndSalFixo(byte value) {
             }
 
             /**
-             * Obtém o valor da propriedade dscSalVar.
+             * Gets the value of the dscSalVar property.
              * 
              * @return
              *     possible object is
@@ -2337,7 +2337,7 @@ public String getDscSalVar() {
             }
 
             /**
-             * Define o valor da propriedade dscSalVar.
+             * Sets the value of the dscSalVar property.
              * 
              * @param value
              *     allowed object is
@@ -2352,9 +2352,9 @@ public void setDscSalVar(String value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -2388,7 +2388,7 @@ public static class Trabalhador {
             protected String nmTrab;
 
             /**
-             * Obtém o valor da propriedade cpfTrab.
+             * Gets the value of the cpfTrab property.
              * 
              */
             public long getCpfTrab() {
@@ -2396,7 +2396,7 @@ public long getCpfTrab() {
             }
 
             /**
-             * Define o valor da propriedade cpfTrab.
+             * Sets the value of the cpfTrab property.
              * 
              */
             public void setCpfTrab(long value) {
@@ -2404,7 +2404,7 @@ public void setCpfTrab(long value) {
             }
 
             /**
-             * Obtém o valor da propriedade nisTrab.
+             * Gets the value of the nisTrab property.
              * 
              */
             public long getNisTrab() {
@@ -2412,7 +2412,7 @@ public long getNisTrab() {
             }
 
             /**
-             * Define o valor da propriedade nisTrab.
+             * Sets the value of the nisTrab property.
              * 
              */
             public void setNisTrab(long value) {
@@ -2420,7 +2420,7 @@ public void setNisTrab(long value) {
             }
 
             /**
-             * Obtém o valor da propriedade nmTrab.
+             * Gets the value of the nmTrab property.
              * 
              * @return
              *     possible object is
@@ -2432,7 +2432,7 @@ public String getNmTrab() {
             }
 
             /**
-             * Define o valor da propriedade nmTrab.
+             * Sets the value of the nmTrab property.
              * 
              * @param value
              *     allowed object is
@@ -2447,9 +2447,9 @@ public void setNmTrab(String value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -2475,7 +2475,7 @@ public static class Vinculo {
             protected String matricula;
 
             /**
-             * Obtém o valor da propriedade matricula.
+             * Gets the value of the matricula property.
              * 
              * @return
              *     possible object is
@@ -2487,7 +2487,7 @@ public String getMatricula() {
             }
 
             /**
-             * Define o valor da propriedade matricula.
+             * Sets the value of the matricula property.
              * 
              * @param value
              *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TIdeEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TIdeEmpregador.java
index 6269918f1..07782ed5f 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TIdeEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TIdeEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:56 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do empregador.
  * 
- * 

Classe Java de TIdeEmpregador complex type. + *

Java class for TIdeEmpregador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeEmpregador">
@@ -54,7 +54,7 @@ public class TIdeEmpregador {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public int getTpInsc() {
@@ -62,7 +62,7 @@ public int getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(int value) {
@@ -70,7 +70,7 @@ public void setTpInsc(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TOcorrencias.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TOcorrencias.java
index 934b2cc87..7eedc4c37 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TOcorrencias.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TOcorrencias.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:56 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 /**
  * Define uma ocorrência encontrada no processamento do evento.
  * 
- * 

Classe Java de TOcorrencias complex type. + *

Java class for TOcorrencias complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TOcorrencias">
@@ -103,9 +103,9 @@ public List getOcorrencia() {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -156,7 +156,7 @@ public static class Ocorrencia {
         protected String localizacao;
 
         /**
-         * Obtém o valor da propriedade tipo.
+         * Gets the value of the tipo property.
          * 
          */
         public short getTipo() {
@@ -164,7 +164,7 @@ public short getTipo() {
         }
 
         /**
-         * Define o valor da propriedade tipo.
+         * Sets the value of the tipo property.
          * 
          */
         public void setTipo(short value) {
@@ -172,7 +172,7 @@ public void setTipo(short value) {
         }
 
         /**
-         * Obtém o valor da propriedade codigo.
+         * Gets the value of the codigo property.
          * 
          */
         public int getCodigo() {
@@ -180,7 +180,7 @@ public int getCodigo() {
         }
 
         /**
-         * Define o valor da propriedade codigo.
+         * Sets the value of the codigo property.
          * 
          */
         public void setCodigo(int value) {
@@ -188,7 +188,7 @@ public void setCodigo(int value) {
         }
 
         /**
-         * Obtém o valor da propriedade descricao.
+         * Gets the value of the descricao property.
          * 
          * @return
          *     possible object is
@@ -200,7 +200,7 @@ public String getDescricao() {
         }
 
         /**
-         * Define o valor da propriedade descricao.
+         * Sets the value of the descricao property.
          * 
          * @param value
          *     allowed object is
@@ -212,7 +212,7 @@ public void setDescricao(String value) {
         }
 
         /**
-         * Obtém o valor da propriedade localizacao.
+         * Gets the value of the localizacao property.
          * 
          * @return
          *     possible object is
@@ -224,7 +224,7 @@ public String getLocalizacao() {
         }
 
         /**
-         * Define o valor da propriedade localizacao.
+         * Sets the value of the localizacao property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformType.java
index 373882b7c..0642118d2 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -23,9 +23,9 @@
 
 
 /**
- * 

Classe Java de TransformType complex type. + *

Java class for TransformType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TransformType">
@@ -75,10 +75,10 @@ public class TransformType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link String } - * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } + * {@link String } + * {@link Object } * * */ @@ -90,7 +90,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -102,7 +102,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformsType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformsType.java index ef2589ff3..2eae50a07 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformsType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/TransformsType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -17,9 +17,9 @@ /** - *

Classe Java de TransformsType complex type. + *

Java class for TransformsType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TransformsType">
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509DataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509DataType.java
index 0397fa1cf..e96ee45ac 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509DataType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509DataType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 
@@ -21,9 +21,9 @@
 
 
 /**
- * 

Classe Java de X509DataType complex type. + *

Java class for X509DataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="X509DataType">
@@ -53,11 +53,11 @@
 public class X509DataType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
+        @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlAnyElement(lax = true)
     protected List x509IssuerSerialOrX509SKIOrX509SubjectName;
@@ -80,13 +80,13 @@ public class X509DataType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } + * {@link Object } * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509IssuerSerialType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509IssuerSerialType.java index ca51c3f75..8d3fa9d6e 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509IssuerSerialType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/X509IssuerSerialType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:26 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:08:58 AM BRT // @@ -16,9 +16,9 @@ /** - *

Classe Java de X509IssuerSerialType complex type. + *

Java class for X509IssuerSerialType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="X509IssuerSerialType">
@@ -48,7 +48,7 @@ public class X509IssuerSerialType {
     protected BigInteger x509SerialNumber;
 
     /**
-     * Obtém o valor da propriedade x509IssuerName.
+     * Gets the value of the x509IssuerName property.
      * 
      * @return
      *     possible object is
@@ -60,7 +60,7 @@ public String getX509IssuerName() {
     }
 
     /**
-     * Define o valor da propriedade x509IssuerName.
+     * Sets the value of the x509IssuerName property.
      * 
      * @param value
      *     allowed object is
@@ -72,7 +72,7 @@ public void setX509IssuerName(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade x509SerialNumber.
+     * Gets the value of the x509SerialNumber property.
      * 
      * @return
      *     possible object is
@@ -84,7 +84,7 @@ public BigInteger getX509SerialNumber() {
     }
 
     /**
-     * Define o valor da propriedade x509SerialNumber.
+     * Sets the value of the x509SerialNumber property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/package-info.java
index 9d61ec9d8..2500449fd 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/retorno/evento/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:26 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:58 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2000/09/xmldsig#", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/CanonicalizationMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/CanonicalizationMethodType.java
index 389e33983..1f4f8bd51 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/CanonicalizationMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/CanonicalizationMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de CanonicalizationMethodType complex type. + *

Java class for CanonicalizationMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="CanonicalizationMethodType">
@@ -70,8 +70,8 @@ public class CanonicalizationMethodType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * * */ @@ -83,7 +83,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -95,7 +95,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DSAKeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DSAKeyValueType.java index 0b8b1cff2..ed103db1a 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DSAKeyValueType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DSAKeyValueType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -15,9 +15,9 @@ /** - *

Classe Java de DSAKeyValueType complex type. + *

Java class for DSAKeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="DSAKeyValueType">
@@ -71,7 +71,7 @@ public class DSAKeyValueType {
     protected byte[] pgenCounter;
 
     /**
-     * Obtém o valor da propriedade p.
+     * Gets the value of the p property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public byte[] getP() {
     }
 
     /**
-     * Define o valor da propriedade p.
+     * Sets the value of the p property.
      * 
      * @param value
      *     allowed object is
@@ -93,7 +93,7 @@ public void setP(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade q.
+     * Gets the value of the q property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public byte[] getQ() {
     }
 
     /**
-     * Define o valor da propriedade q.
+     * Sets the value of the q property.
      * 
      * @param value
      *     allowed object is
@@ -115,7 +115,7 @@ public void setQ(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade g.
+     * Gets the value of the g property.
      * 
      * @return
      *     possible object is
@@ -126,7 +126,7 @@ public byte[] getG() {
     }
 
     /**
-     * Define o valor da propriedade g.
+     * Sets the value of the g property.
      * 
      * @param value
      *     allowed object is
@@ -137,7 +137,7 @@ public void setG(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade y.
+     * Gets the value of the y property.
      * 
      * @return
      *     possible object is
@@ -148,7 +148,7 @@ public byte[] getY() {
     }
 
     /**
-     * Define o valor da propriedade y.
+     * Sets the value of the y property.
      * 
      * @param value
      *     allowed object is
@@ -159,7 +159,7 @@ public void setY(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade j.
+     * Gets the value of the j property.
      * 
      * @return
      *     possible object is
@@ -170,7 +170,7 @@ public byte[] getJ() {
     }
 
     /**
-     * Define o valor da propriedade j.
+     * Sets the value of the j property.
      * 
      * @param value
      *     allowed object is
@@ -181,7 +181,7 @@ public void setJ(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade seed.
+     * Gets the value of the seed property.
      * 
      * @return
      *     possible object is
@@ -192,7 +192,7 @@ public byte[] getSeed() {
     }
 
     /**
-     * Define o valor da propriedade seed.
+     * Sets the value of the seed property.
      * 
      * @param value
      *     allowed object is
@@ -203,7 +203,7 @@ public void setSeed(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade pgenCounter.
+     * Gets the value of the pgenCounter property.
      * 
      * @return
      *     possible object is
@@ -214,7 +214,7 @@ public byte[] getPgenCounter() {
     }
 
     /**
-     * Define o valor da propriedade pgenCounter.
+     * Sets the value of the pgenCounter property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DigestMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DigestMethodType.java
index ad926da56..6257929ab 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DigestMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/DigestMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -21,9 +21,9 @@
 
 
 /**
- * 

Classe Java de DigestMethodType complex type. + *

Java class for DigestMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="DigestMethodType">
@@ -71,9 +71,9 @@ public class DigestMethodType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Element } * {@link Object } + * {@link String } * * */ @@ -85,7 +85,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -97,7 +97,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ESocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ESocial.java index 80341399d..b765515d9 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ESocial.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ESocial.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:28 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:04 AM BRT // @@ -16,9 +16,9 @@ /** - *

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -60,7 +60,7 @@ public class ESocial {
     protected SignatureType signature;
 
     /**
-     * Obtém o valor da propriedade download.
+     * Gets the value of the download property.
      * 
      * @return
      *     possible object is
@@ -72,7 +72,7 @@ public ESocial.Download getDownload() {
     }
 
     /**
-     * Define o valor da propriedade download.
+     * Sets the value of the download property.
      * 
      * @param value
      *     allowed object is
@@ -84,7 +84,7 @@ public void setDownload(ESocial.Download value) {
     }
 
     /**
-     * Obtém o valor da propriedade signature.
+     * Gets the value of the signature property.
      * 
      * @return
      *     possible object is
@@ -96,7 +96,7 @@ public SignatureType getSignature() {
     }
 
     /**
-     * Define o valor da propriedade signature.
+     * Sets the value of the signature property.
      * 
      * @param value
      *     allowed object is
@@ -109,9 +109,9 @@ public void setSignature(SignatureType value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -141,7 +141,7 @@ public static class Download {
         protected TSolicitacaoDownloadPorNrRecibo solicDownloadEventosPorNrRecibo;
 
         /**
-         * Obtém o valor da propriedade ideEmpregador.
+         * Gets the value of the ideEmpregador property.
          * 
          * @return
          *     possible object is
@@ -153,7 +153,7 @@ public TIdeEmpregador getIdeEmpregador() {
         }
 
         /**
-         * Define o valor da propriedade ideEmpregador.
+         * Sets the value of the ideEmpregador property.
          * 
          * @param value
          *     allowed object is
@@ -165,7 +165,7 @@ public void setIdeEmpregador(TIdeEmpregador value) {
         }
 
         /**
-         * Obtém o valor da propriedade solicDownloadEventosPorNrRecibo.
+         * Gets the value of the solicDownloadEventosPorNrRecibo property.
          * 
          * @return
          *     possible object is
@@ -177,7 +177,7 @@ public TSolicitacaoDownloadPorNrRecibo getSolicDownloadEventosPorNrRecibo() {
         }
 
         /**
-         * Define o valor da propriedade solicDownloadEventosPorNrRecibo.
+         * Sets the value of the solicDownloadEventosPorNrRecibo property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyInfoType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyInfoType.java
index 94d22503d..1d1a7f058 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyInfoType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyInfoType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -27,9 +27,9 @@
 
 
 /**
- * 

Classe Java de KeyInfoType complex type. + *

Java class for KeyInfoType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="KeyInfoType">
@@ -60,11 +60,11 @@
 public class KeyInfoType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
@@ -95,16 +95,16 @@ public class KeyInfoType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * * */ @@ -116,7 +116,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -128,7 +128,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyValueType.java index 95d4c6c7a..91f0d359d 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyValueType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/KeyValueType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de KeyValueType complex type. + *

Java class for KeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="KeyValueType">
@@ -49,8 +49,8 @@
 public class KeyValueType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
+        @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlMixed
     @XmlAnyElement(lax = true)
@@ -74,11 +74,11 @@ public class KeyValueType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link String } * {@link Element } - * {@link Object } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link String } + * {@link Object } + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ManifestType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ManifestType.java index cab5e919f..7a6b8f647 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ManifestType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ManifestType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de ManifestType complex type. + *

Java class for ManifestType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ManifestType">
@@ -85,7 +85,7 @@ public List getReference() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -97,7 +97,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectFactory.java
index 7695d82ab..049cb0b64 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -56,16 +56,16 @@ public class ObjectFactory {
     private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data");
     private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest");
     private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty");
-    private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID");
-    private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket");
-    private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp");
     private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength");
+    private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp");
     private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath");
     private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial");
     private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL");
     private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName");
     private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI");
     private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate");
+    private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID");
+    private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket");
 
     /**
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.esocialjt.comunicacao.eventos.solicitacao.download.eventos
@@ -467,21 +467,12 @@ public JAXBElement createSignatureProperty(SignaturePrope
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
-     * 
-     */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class)
-    public JAXBElement createPGPDataTypePGPKeyID(byte[] value) {
-        return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
-    }
-
-    /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class)
-    public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) {
-        return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class)
+    public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) {
+        return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value);
     }
 
     /**
@@ -493,15 +484,6 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) {
         return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value));
     }
 
-    /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
-     * 
-     */
-    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class)
-    public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) {
-        return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value);
-    }
-
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
      * 
@@ -556,4 +538,22 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) {
         return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value));
     }
 
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class)
+    public JAXBElement createPGPDataTypePGPKeyID(byte[] value) {
+        return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class)
+    public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) {
+        return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value));
+    }
+
 }
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectType.java
index 3171eac0f..4d055a902 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ObjectType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -24,9 +24,9 @@
 
 
 /**
- * 

Classe Java de ObjectType complex type. + *

Java class for ObjectType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ObjectType">
@@ -83,9 +83,9 @@ public class ObjectType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Element } * {@link Object } + * {@link String } * * */ @@ -97,7 +97,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -109,7 +109,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is @@ -121,7 +121,7 @@ public void setId(String value) { } /** - * Obtém o valor da propriedade mimeType. + * Gets the value of the mimeType property. * * @return * possible object is @@ -133,7 +133,7 @@ public String getMimeType() { } /** - * Define o valor da propriedade mimeType. + * Sets the value of the mimeType property. * * @param value * allowed object is @@ -145,7 +145,7 @@ public void setMimeType(String value) { } /** - * Obtém o valor da propriedade encoding. + * Gets the value of the encoding property. * * @return * possible object is @@ -157,7 +157,7 @@ public String getEncoding() { } /** - * Define o valor da propriedade encoding. + * Sets the value of the encoding property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/PGPDataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/PGPDataType.java index 9c580dff9..6d931ec1c 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/PGPDataType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/PGPDataType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -21,9 +21,9 @@ /** - *

Classe Java de PGPDataType complex type. + *

Java class for PGPDataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="PGPDataType">
@@ -61,16 +61,16 @@ public class PGPDataType {
     protected List content;
 
     /**
-     * Obtém o restante do modelo do conteúdo. 
+     * Gets the rest of the content model. 
      * 
      * 

- * Você está obtendo esta propriedade "catch-all" pelo seguinte motivo: - * O nome do campo "PGPKeyPacket" é usado por duas partes diferentes de um esquema. Consulte: - * linha 220 de file:/home/tiago/desenv/git/esocial/src/esocial-comunicacao/src/main/resources/XSD/Eventos/SolicitacaoDownloadEventos/xmldsig-core-schema.xsd - * linha 215 de file:/home/tiago/desenv/git/esocial/src/esocial-comunicacao/src/main/resources/XSD/Eventos/SolicitacaoDownloadEventos/xmldsig-core-schema.xsd + * You are getting this "catch-all" property because of the following reason: + * The field name "PGPKeyPacket" is used by two different parts of a schema. See: + * line 220 of file:/workspace/src/esocial-comunicacao/src/main/resources/XSD/Eventos/SolicitacaoDownloadEventos/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-comunicacao/src/main/resources/XSD/Eventos/SolicitacaoDownloadEventos/xmldsig-core-schema.xsd *

- * Para eliminar esta propriedade, aplique uma personalização de propriedade a uma - * das seguintes declarações, a fim de alterar seus nomes: + * To get rid of this property, apply a property customization to one + * of both of the following declarations to change their names: * Gets the value of the content property. * *

@@ -88,9 +88,9 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link Object } * * diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RSAKeyValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RSAKeyValueType.java index cc77bebb3..647131fec 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RSAKeyValueType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RSAKeyValueType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -15,9 +15,9 @@ /** - *

Classe Java de RSAKeyValueType complex type. + *

Java class for RSAKeyValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="RSAKeyValueType">
@@ -47,7 +47,7 @@ public class RSAKeyValueType {
     protected byte[] exponent;
 
     /**
-     * Obtém o valor da propriedade modulus.
+     * Gets the value of the modulus property.
      * 
      * @return
      *     possible object is
@@ -58,7 +58,7 @@ public byte[] getModulus() {
     }
 
     /**
-     * Define o valor da propriedade modulus.
+     * Sets the value of the modulus property.
      * 
      * @param value
      *     allowed object is
@@ -69,7 +69,7 @@ public void setModulus(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade exponent.
+     * Gets the value of the exponent property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public byte[] getExponent() {
     }
 
     /**
-     * Define o valor da propriedade exponent.
+     * Sets the value of the exponent property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ReferenceType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ReferenceType.java
index dad956773..278829f92 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ReferenceType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/ReferenceType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de ReferenceType complex type. + *

Java class for ReferenceType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="ReferenceType">
@@ -70,7 +70,7 @@ public class ReferenceType {
     protected String type;
 
     /**
-     * Obtém o valor da propriedade transforms.
+     * Gets the value of the transforms property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public TransformsType getTransforms() {
     }
 
     /**
-     * Define o valor da propriedade transforms.
+     * Sets the value of the transforms property.
      * 
      * @param value
      *     allowed object is
@@ -94,7 +94,7 @@ public void setTransforms(TransformsType value) {
     }
 
     /**
-     * Obtém o valor da propriedade digestMethod.
+     * Gets the value of the digestMethod property.
      * 
      * @return
      *     possible object is
@@ -106,7 +106,7 @@ public DigestMethodType getDigestMethod() {
     }
 
     /**
-     * Define o valor da propriedade digestMethod.
+     * Sets the value of the digestMethod property.
      * 
      * @param value
      *     allowed object is
@@ -118,7 +118,7 @@ public void setDigestMethod(DigestMethodType value) {
     }
 
     /**
-     * Obtém o valor da propriedade digestValue.
+     * Gets the value of the digestValue property.
      * 
      * @return
      *     possible object is
@@ -129,7 +129,7 @@ public byte[] getDigestValue() {
     }
 
     /**
-     * Define o valor da propriedade digestValue.
+     * Sets the value of the digestValue property.
      * 
      * @param value
      *     allowed object is
@@ -140,7 +140,7 @@ public void setDigestValue(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -152,7 +152,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
@@ -164,7 +164,7 @@ public void setId(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade uri.
+     * Gets the value of the uri property.
      * 
      * @return
      *     possible object is
@@ -176,7 +176,7 @@ public String getURI() {
     }
 
     /**
-     * Define o valor da propriedade uri.
+     * Sets the value of the uri property.
      * 
      * @param value
      *     allowed object is
@@ -188,7 +188,7 @@ public void setURI(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade type.
+     * Gets the value of the type property.
      * 
      * @return
      *     possible object is
@@ -200,7 +200,7 @@ public String getType() {
     }
 
     /**
-     * Define o valor da propriedade type.
+     * Sets the value of the type property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RetrievalMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RetrievalMethodType.java
index 74e764c09..1cfa72b33 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RetrievalMethodType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/RetrievalMethodType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de RetrievalMethodType complex type. + *

Java class for RetrievalMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="RetrievalMethodType">
@@ -53,7 +53,7 @@ public class RetrievalMethodType {
     protected String type;
 
     /**
-     * Obtém o valor da propriedade transforms.
+     * Gets the value of the transforms property.
      * 
      * @return
      *     possible object is
@@ -65,7 +65,7 @@ public TransformsType getTransforms() {
     }
 
     /**
-     * Define o valor da propriedade transforms.
+     * Sets the value of the transforms property.
      * 
      * @param value
      *     allowed object is
@@ -77,7 +77,7 @@ public void setTransforms(TransformsType value) {
     }
 
     /**
-     * Obtém o valor da propriedade uri.
+     * Gets the value of the uri property.
      * 
      * @return
      *     possible object is
@@ -89,7 +89,7 @@ public String getURI() {
     }
 
     /**
-     * Define o valor da propriedade uri.
+     * Sets the value of the uri property.
      * 
      * @param value
      *     allowed object is
@@ -101,7 +101,7 @@ public void setURI(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade type.
+     * Gets the value of the type property.
      * 
      * @return
      *     possible object is
@@ -113,7 +113,7 @@ public String getType() {
     }
 
     /**
-     * Define o valor da propriedade type.
+     * Sets the value of the type property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SPKIDataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SPKIDataType.java
index 23f2995a8..8a506211d 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SPKIDataType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SPKIDataType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de SPKIDataType complex type. + *

Java class for SPKIDataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SPKIDataType">
@@ -67,9 +67,9 @@ public class SPKIDataType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureMethodType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureMethodType.java index 50b14887a..6a8799f47 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureMethodType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureMethodType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -23,9 +23,9 @@ /** - *

Classe Java de SignatureMethodType complex type. + *

Java class for SignatureMethodType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureMethodType">
@@ -75,9 +75,9 @@ public class SignatureMethodType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} - * {@link String } * {@link Object } + * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ @@ -89,7 +89,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -101,7 +101,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertiesType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertiesType.java index d949a0288..c8903accd 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertiesType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertiesType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de SignaturePropertiesType complex type. + *

Java class for SignaturePropertiesType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignaturePropertiesType">
@@ -85,7 +85,7 @@ public List getSignatureProperty() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -97,7 +97,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertyType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertyType.java
index 3683250c6..aa98a4b3e 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertyType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignaturePropertyType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -24,9 +24,9 @@
 
 
 /**
- * 

Classe Java de SignaturePropertyType complex type. + *

Java class for SignaturePropertyType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignaturePropertyType">
@@ -80,9 +80,9 @@ public class SignaturePropertyType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Element } * {@link Object } + * {@link String } * * */ @@ -94,7 +94,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade target. + * Gets the value of the target property. * * @return * possible object is @@ -106,7 +106,7 @@ public String getTarget() { } /** - * Define o valor da propriedade target. + * Sets the value of the target property. * * @param value * allowed object is @@ -118,7 +118,7 @@ public void setTarget(String value) { } /** - * Obtém o valor da propriedade id. + * Gets the value of the id property. * * @return * possible object is @@ -130,7 +130,7 @@ public String getId() { } /** - * Define o valor da propriedade id. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureType.java index a0cfa6d78..1f8350663 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -22,9 +22,9 @@ /** - *

Classe Java de SignatureType complex type. + *

Java class for SignatureType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureType">
@@ -68,7 +68,7 @@ public class SignatureType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade signedInfo.
+     * Gets the value of the signedInfo property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public SignedInfoType getSignedInfo() {
     }
 
     /**
-     * Define o valor da propriedade signedInfo.
+     * Sets the value of the signedInfo property.
      * 
      * @param value
      *     allowed object is
@@ -92,7 +92,7 @@ public void setSignedInfo(SignedInfoType value) {
     }
 
     /**
-     * Obtém o valor da propriedade signatureValue.
+     * Gets the value of the signatureValue property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public SignatureValueType getSignatureValue() {
     }
 
     /**
-     * Define o valor da propriedade signatureValue.
+     * Sets the value of the signatureValue property.
      * 
      * @param value
      *     allowed object is
@@ -116,7 +116,7 @@ public void setSignatureValue(SignatureValueType value) {
     }
 
     /**
-     * Obtém o valor da propriedade keyInfo.
+     * Gets the value of the keyInfo property.
      * 
      * @return
      *     possible object is
@@ -128,7 +128,7 @@ public KeyInfoType getKeyInfo() {
     }
 
     /**
-     * Define o valor da propriedade keyInfo.
+     * Sets the value of the keyInfo property.
      * 
      * @param value
      *     allowed object is
@@ -169,7 +169,7 @@ public List getObject() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -181,7 +181,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureValueType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureValueType.java
index 9caadd9db..1d260fc26 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureValueType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignatureValueType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 
 
 /**
- * 

Classe Java de SignatureValueType complex type. + *

Java class for SignatureValueType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignatureValueType">
@@ -51,7 +51,7 @@ public class SignatureValueType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade value.
+     * Gets the value of the value property.
      * 
      * @return
      *     possible object is
@@ -62,7 +62,7 @@ public byte[] getValue() {
     }
 
     /**
-     * Define o valor da propriedade value.
+     * Sets the value of the value property.
      * 
      * @param value
      *     allowed object is
@@ -73,7 +73,7 @@ public void setValue(byte[] value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -85,7 +85,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignedInfoType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignedInfoType.java
index 65700f269..b4f00d020 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignedInfoType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/SignedInfoType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -22,9 +22,9 @@
 
 
 /**
- * 

Classe Java de SignedInfoType complex type. + *

Java class for SignedInfoType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="SignedInfoType">
@@ -64,7 +64,7 @@ public class SignedInfoType {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade canonicalizationMethod.
+     * Gets the value of the canonicalizationMethod property.
      * 
      * @return
      *     possible object is
@@ -76,7 +76,7 @@ public CanonicalizationMethodType getCanonicalizationMethod() {
     }
 
     /**
-     * Define o valor da propriedade canonicalizationMethod.
+     * Sets the value of the canonicalizationMethod property.
      * 
      * @param value
      *     allowed object is
@@ -88,7 +88,7 @@ public void setCanonicalizationMethod(CanonicalizationMethodType value) {
     }
 
     /**
-     * Obtém o valor da propriedade signatureMethod.
+     * Gets the value of the signatureMethod property.
      * 
      * @return
      *     possible object is
@@ -100,7 +100,7 @@ public SignatureMethodType getSignatureMethod() {
     }
 
     /**
-     * Define o valor da propriedade signatureMethod.
+     * Sets the value of the signatureMethod property.
      * 
      * @param value
      *     allowed object is
@@ -141,7 +141,7 @@ public List getReference() {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -153,7 +153,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TEventoeSocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TEventoeSocial.java
index 62131851d..d8ea06037 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TEventoeSocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TEventoeSocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:27 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:00 AM BRT 
 //
 
 
@@ -25,9 +25,9 @@
  *         Define os dados de um arquivo do eSocial (evento).
  *       
  * 
- * 

Classe Java de TEventoeSocial complex type. + *

Java class for TEventoeSocial complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TEventoeSocial">
@@ -59,7 +59,7 @@ public class TEventoeSocial {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade any.
+     * Gets the value of the any property.
      * 
      * @return
      *     possible object is
@@ -71,7 +71,7 @@ public Element getAny() {
     }
 
     /**
-     * Define o valor da propriedade any.
+     * Sets the value of the any property.
      * 
      * @param value
      *     allowed object is
@@ -83,7 +83,7 @@ public void setAny(Element value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -95,7 +95,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TIdeEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TIdeEmpregador.java
index 5b923f1e6..b235d77e9 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TIdeEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TIdeEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:28 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:04 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do empregador. 1-CNPJ; 2-CPF;
  * 
- * 

Classe Java de TIdeEmpregador complex type. + *

Java class for TIdeEmpregador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeEmpregador">
@@ -61,7 +61,7 @@ public class TIdeEmpregador {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public byte getTpInsc() {
@@ -69,7 +69,7 @@ public byte getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(byte value) {
@@ -77,7 +77,7 @@ public void setTpInsc(byte value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -89,7 +89,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TReciboeSocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TReciboeSocial.java
index db6be84d7..30bc80d9e 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TReciboeSocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TReciboeSocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:27 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:00 AM BRT 
 //
 
 
@@ -21,9 +21,9 @@
  *         Define os dados de um arquivo do eSocial (recibo).
  *       
  * 
- * 

Classe Java de TReciboeSocial complex type. + *

Java class for TReciboeSocial complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TReciboeSocial">
@@ -58,7 +58,7 @@ public class TReciboeSocial {
     protected String nrRec;
 
     /**
-     * Obtém o valor da propriedade any.
+     * Gets the value of the any property.
      * 
      * @return
      *     possible object is
@@ -70,7 +70,7 @@ public Element getAny() {
     }
 
     /**
-     * Define o valor da propriedade any.
+     * Sets the value of the any property.
      * 
      * @param value
      *     allowed object is
@@ -82,7 +82,7 @@ public void setAny(Element value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrRec.
+     * Gets the value of the nrRec property.
      * 
      * @return
      *     possible object is
@@ -94,7 +94,7 @@ public String getNrRec() {
     }
 
     /**
-     * Define o valor da propriedade nrRec.
+     * Sets the value of the nrRec property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TRetornoSolicitacaoDownloadEvento.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TRetornoSolicitacaoDownloadEvento.java
index 274d7f81c..3a4256447 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TRetornoSolicitacaoDownloadEvento.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TRetornoSolicitacaoDownloadEvento.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:27 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:00 AM BRT 
 //
 
 
@@ -19,9 +19,9 @@
 /**
  * Define os campos de retorno a solicitação de download de eventos.
  * 
- * 

Classe Java de TRetornoSolicitacaoDownloadEvento complex type. + *

Java class for TRetornoSolicitacaoDownloadEvento complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TRetornoSolicitacaoDownloadEvento">
@@ -69,7 +69,7 @@ public class TRetornoSolicitacaoDownloadEvento {
     protected TRetornoSolicitacaoDownloadEvento.Arquivos arquivos;
 
     /**
-     * Obtém o valor da propriedade arquivos.
+     * Gets the value of the arquivos property.
      * 
      * @return
      *     possible object is
@@ -81,7 +81,7 @@ public TRetornoSolicitacaoDownloadEvento.Arquivos getArquivos() {
     }
 
     /**
-     * Define o valor da propriedade arquivos.
+     * Sets the value of the arquivos property.
      * 
      * @param value
      *     allowed object is
@@ -94,9 +94,9 @@ public void setArquivos(TRetornoSolicitacaoDownloadEvento.Arquivos value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -164,9 +164,9 @@ public List getArquivo() {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -198,7 +198,7 @@ public static class Arquivo {
             protected TReciboeSocial rec;
 
             /**
-             * Obtém o valor da propriedade status.
+             * Gets the value of the status property.
              * 
              * @return
              *     possible object is
@@ -210,7 +210,7 @@ public TStatus getStatus() {
             }
 
             /**
-             * Define o valor da propriedade status.
+             * Sets the value of the status property.
              * 
              * @param value
              *     allowed object is
@@ -222,7 +222,7 @@ public void setStatus(TStatus value) {
             }
 
             /**
-             * Obtém o valor da propriedade evt.
+             * Gets the value of the evt property.
              * 
              * @return
              *     possible object is
@@ -234,7 +234,7 @@ public TEventoeSocial getEvt() {
             }
 
             /**
-             * Define o valor da propriedade evt.
+             * Sets the value of the evt property.
              * 
              * @param value
              *     allowed object is
@@ -246,7 +246,7 @@ public void setEvt(TEventoeSocial value) {
             }
 
             /**
-             * Obtém o valor da propriedade rec.
+             * Gets the value of the rec property.
              * 
              * @return
              *     possible object is
@@ -258,7 +258,7 @@ public TReciboeSocial getRec() {
             }
 
             /**
-             * Define o valor da propriedade rec.
+             * Sets the value of the rec property.
              * 
              * @param value
              *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorIdEvento.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorIdEvento.java
index f1fee0441..87c54148c 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorIdEvento.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorIdEvento.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:27 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:02 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 /**
  * Define os parâmetros para consulta por Id do evento.
  * 
- * 

Classe Java de TSolicitacaoDownloadPorIdEvento complex type. + *

Java class for TSolicitacaoDownloadPorIdEvento complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TSolicitacaoDownloadPorIdEvento">
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorNrRecibo.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorNrRecibo.java
index 57b280a29..35e6edea0 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorNrRecibo.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TSolicitacaoDownloadPorNrRecibo.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:28 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:04 AM BRT 
 //
 
 
@@ -19,9 +19,9 @@
 /**
  * Define os parâmetros para consulta por número de recibo do evento.
  * 
- * 

Classe Java de TSolicitacaoDownloadPorNrRecibo complex type. + *

Java class for TSolicitacaoDownloadPorNrRecibo complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TSolicitacaoDownloadPorNrRecibo">
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TStatus.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TStatus.java
index 2d2394073..91e711d3a 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TStatus.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TStatus.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:27 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:00 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Contém o status da solicitação realizada.
  * 
- * 

Classe Java de TStatus complex type. + *

Java class for TStatus complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TStatus">
@@ -54,7 +54,7 @@ public class TStatus {
     protected String descResposta;
 
     /**
-     * Obtém o valor da propriedade cdResposta.
+     * Gets the value of the cdResposta property.
      * 
      */
     public int getCdResposta() {
@@ -62,7 +62,7 @@ public int getCdResposta() {
     }
 
     /**
-     * Define o valor da propriedade cdResposta.
+     * Sets the value of the cdResposta property.
      * 
      */
     public void setCdResposta(int value) {
@@ -70,7 +70,7 @@ public void setCdResposta(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade descResposta.
+     * Gets the value of the descResposta property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public String getDescResposta() {
     }
 
     /**
-     * Define o valor da propriedade descResposta.
+     * Sets the value of the descResposta property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformType.java
index acce36363..04aeeb911 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -23,9 +23,9 @@
 
 
 /**
- * 

Classe Java de TransformType complex type. + *

Java class for TransformType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TransformType">
@@ -76,8 +76,8 @@ public class TransformType {
      * 

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link String } * {@link Element } + * {@link String } * {@link Object } * * @@ -90,7 +90,7 @@ public List getContent() { } /** - * Obtém o valor da propriedade algorithm. + * Gets the value of the algorithm property. * * @return * possible object is @@ -102,7 +102,7 @@ public String getAlgorithm() { } /** - * Define o valor da propriedade algorithm. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformsType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformsType.java index cf69a5a12..783ca9662 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformsType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/TransformsType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -17,9 +17,9 @@ /** - *

Classe Java de TransformsType complex type. + *

Java class for TransformsType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TransformsType">
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509DataType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509DataType.java
index 0b77aff4f..1490fa097 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509DataType.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509DataType.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 
@@ -21,9 +21,9 @@
 
 
 /**
- * 

Classe Java de X509DataType complex type. + *

Java class for X509DataType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="X509DataType">
@@ -53,11 +53,11 @@
 public class X509DataType {
 
     @XmlElementRefs({
+        @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
         @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
-        @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
+        @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false)
     })
     @XmlAnyElement(lax = true)
     protected List x509IssuerSerialOrX509SKIOrX509SubjectName;
@@ -80,13 +80,13 @@ public class X509DataType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } + * {@link Object } * * */ diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509IssuerSerialType.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509IssuerSerialType.java index 9108975fe..27f3273d4 100644 --- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509IssuerSerialType.java +++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/X509IssuerSerialType.java @@ -1,8 +1,8 @@ // -// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 -// Consulte http://java.sun.com/xml/jaxb -// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. -// Gerado em: 2021.03.05 às 03:20:29 PM BRT +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2024.08.02 at 09:09:05 AM BRT // @@ -16,9 +16,9 @@ /** - *

Classe Java de X509IssuerSerialType complex type. + *

Java class for X509IssuerSerialType complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="X509IssuerSerialType">
@@ -48,7 +48,7 @@ public class X509IssuerSerialType {
     protected BigInteger x509SerialNumber;
 
     /**
-     * Obtém o valor da propriedade x509IssuerName.
+     * Gets the value of the x509IssuerName property.
      * 
      * @return
      *     possible object is
@@ -60,7 +60,7 @@ public String getX509IssuerName() {
     }
 
     /**
-     * Define o valor da propriedade x509IssuerName.
+     * Sets the value of the x509IssuerName property.
      * 
      * @param value
      *     allowed object is
@@ -72,7 +72,7 @@ public void setX509IssuerName(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade x509SerialNumber.
+     * Gets the value of the x509SerialNumber property.
      * 
      * @return
      *     possible object is
@@ -84,7 +84,7 @@ public BigInteger getX509SerialNumber() {
     }
 
     /**
-     * Define o valor da propriedade x509SerialNumber.
+     * Sets the value of the x509SerialNumber property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/package-info.java
index 38273871b..71eee3bbd 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/eventos/solicitacao/download/eventos/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:29 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:05 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2000/09/xmldsig#", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ESocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ESocial.java
index 35123f143..bfd5937f7 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ESocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ESocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:06 AM BRT 
 //
 
 
@@ -16,9 +16,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -55,7 +55,7 @@ public class ESocial {
     protected ESocial.ConsultaLoteEventos consultaLoteEventos;
 
     /**
-     * Obtém o valor da propriedade consultaLoteEventos.
+     * Gets the value of the consultaLoteEventos property.
      * 
      * @return
      *     possible object is
@@ -67,7 +67,7 @@ public ESocial.ConsultaLoteEventos getConsultaLoteEventos() {
     }
 
     /**
-     * Define o valor da propriedade consultaLoteEventos.
+     * Sets the value of the consultaLoteEventos property.
      * 
      * @param value
      *     allowed object is
@@ -80,9 +80,9 @@ public void setConsultaLoteEventos(ESocial.ConsultaLoteEventos value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -108,7 +108,7 @@ public static class ConsultaLoteEventos {
         protected String protocoloEnvio;
 
         /**
-         * Obtém o valor da propriedade protocoloEnvio.
+         * Gets the value of the protocoloEnvio property.
          * 
          * @return
          *     possible object is
@@ -120,7 +120,7 @@ public String getProtocoloEnvio() {
         }
 
         /**
-         * Define o valor da propriedade protocoloEnvio.
+         * Sets the value of the protocoloEnvio property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ObjectFactory.java
index 665368481..2c9cce226 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:06 AM BRT 
 //
 
 
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/package-info.java
index d5968d743..b23f97f7a 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/consulta/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:06 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/lote/eventos/envio/consulta/retornoProcessamento/v1_0_0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ESocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ESocial.java
index c68210122..69ba9fe6c 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ESocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ESocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:07 AM BRT 
 //
 
 
@@ -19,9 +19,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -71,7 +71,7 @@ public class ESocial {
     protected ESocial.EnvioLoteEventos envioLoteEventos;
 
     /**
-     * Obtém o valor da propriedade envioLoteEventos.
+     * Gets the value of the envioLoteEventos property.
      * 
      * @return
      *     possible object is
@@ -83,7 +83,7 @@ public ESocial.EnvioLoteEventos getEnvioLoteEventos() {
     }
 
     /**
-     * Define o valor da propriedade envioLoteEventos.
+     * Sets the value of the envioLoteEventos property.
      * 
      * @param value
      *     allowed object is
@@ -96,9 +96,9 @@ public void setEnvioLoteEventos(ESocial.EnvioLoteEventos value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -145,7 +145,7 @@ public static class EnvioLoteEventos {
         protected int grupo;
 
         /**
-         * Obtém o valor da propriedade ideEmpregador.
+         * Gets the value of the ideEmpregador property.
          * 
          * @return
          *     possible object is
@@ -157,7 +157,7 @@ public TIdeEmpregador getIdeEmpregador() {
         }
 
         /**
-         * Define o valor da propriedade ideEmpregador.
+         * Sets the value of the ideEmpregador property.
          * 
          * @param value
          *     allowed object is
@@ -169,7 +169,7 @@ public void setIdeEmpregador(TIdeEmpregador value) {
         }
 
         /**
-         * Obtém o valor da propriedade ideTransmissor.
+         * Gets the value of the ideTransmissor property.
          * 
          * @return
          *     possible object is
@@ -181,7 +181,7 @@ public TIdeTransmissor getIdeTransmissor() {
         }
 
         /**
-         * Define o valor da propriedade ideTransmissor.
+         * Sets the value of the ideTransmissor property.
          * 
          * @param value
          *     allowed object is
@@ -193,7 +193,7 @@ public void setIdeTransmissor(TIdeTransmissor value) {
         }
 
         /**
-         * Obtém o valor da propriedade eventos.
+         * Gets the value of the eventos property.
          * 
          * @return
          *     possible object is
@@ -205,7 +205,7 @@ public ESocial.EnvioLoteEventos.Eventos getEventos() {
         }
 
         /**
-         * Define o valor da propriedade eventos.
+         * Sets the value of the eventos property.
          * 
          * @param value
          *     allowed object is
@@ -217,7 +217,7 @@ public void setEventos(ESocial.EnvioLoteEventos.Eventos value) {
         }
 
         /**
-         * Obtém o valor da propriedade grupo.
+         * Gets the value of the grupo property.
          * 
          */
         public int getGrupo() {
@@ -225,7 +225,7 @@ public int getGrupo() {
         }
 
         /**
-         * Define o valor da propriedade grupo.
+         * Sets the value of the grupo property.
          * 
          */
         public void setGrupo(int value) {
@@ -234,9 +234,9 @@ public void setGrupo(int value) {
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ObjectFactory.java
index 96ccbea8c..078c346db 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:07 AM BRT 
 //
 
 
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TArquivoEsocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TArquivoEsocial.java
index 5b593bb8b..542ebd0ce 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TArquivoEsocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TArquivoEsocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:07 AM BRT 
 //
 
 
@@ -25,9 +25,9 @@
  *         Define os dados de um arquivo do eSocial (evento).
  *       
  * 
- * 

Classe Java de TArquivoEsocial complex type. + *

Java class for TArquivoEsocial complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TArquivoEsocial">
@@ -59,7 +59,7 @@ public class TArquivoEsocial {
     protected String id;
 
     /**
-     * Obtém o valor da propriedade any.
+     * Gets the value of the any property.
      * 
      * @return
      *     possible object is
@@ -71,7 +71,7 @@ public Element getAny() {
     }
 
     /**
-     * Define o valor da propriedade any.
+     * Sets the value of the any property.
      * 
      * @param value
      *     allowed object is
@@ -83,7 +83,7 @@ public void setAny(Element value) {
     }
 
     /**
-     * Obtém o valor da propriedade id.
+     * Gets the value of the id property.
      * 
      * @return
      *     possible object is
@@ -95,7 +95,7 @@ public String getId() {
     }
 
     /**
-     * Define o valor da propriedade id.
+     * Sets the value of the id property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeEmpregador.java
index c4efa2939..ecbe0d957 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:07 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do empregador.
  * 
- * 

Classe Java de TIdeEmpregador complex type. + *

Java class for TIdeEmpregador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeEmpregador">
@@ -61,7 +61,7 @@ public class TIdeEmpregador {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public byte getTpInsc() {
@@ -69,7 +69,7 @@ public byte getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(byte value) {
@@ -77,7 +77,7 @@ public void setTpInsc(byte value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -89,7 +89,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeTransmissor.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeTransmissor.java
index abdd53cef..4319e5aa5 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeTransmissor.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/TIdeTransmissor.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:07 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do transmissor.
  * 
- * 

Classe Java de TIdeTransmissor complex type. + *

Java class for TIdeTransmissor complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeTransmissor">
@@ -61,7 +61,7 @@ public class TIdeTransmissor {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public byte getTpInsc() {
@@ -69,7 +69,7 @@ public byte getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(byte value) {
@@ -77,7 +77,7 @@ public void setTpInsc(byte value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -89,7 +89,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/package-info.java
index 753806b2a..388d63ee9 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/envio/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:30 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:07 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/lote/eventos/envio/v1_1_1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ESocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ESocial.java
index 12037339c..8d57f803d 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ESocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ESocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 
@@ -16,9 +16,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -58,7 +58,7 @@ public class ESocial {
     protected ESocial.RetornoEnvioLoteEventos retornoEnvioLoteEventos;
 
     /**
-     * Obtém o valor da propriedade retornoEnvioLoteEventos.
+     * Gets the value of the retornoEnvioLoteEventos property.
      * 
      * @return
      *     possible object is
@@ -70,7 +70,7 @@ public ESocial.RetornoEnvioLoteEventos getRetornoEnvioLoteEventos() {
     }
 
     /**
-     * Define o valor da propriedade retornoEnvioLoteEventos.
+     * Sets the value of the retornoEnvioLoteEventos property.
      * 
      * @param value
      *     allowed object is
@@ -83,9 +83,9 @@ public void setRetornoEnvioLoteEventos(ESocial.RetornoEnvioLoteEventos value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -120,7 +120,7 @@ public static class RetornoEnvioLoteEventos {
         protected TDadosRecepcao dadosRecepcaoLote;
 
         /**
-         * Obtém o valor da propriedade ideEmpregador.
+         * Gets the value of the ideEmpregador property.
          * 
          * @return
          *     possible object is
@@ -132,7 +132,7 @@ public TIdeEmpregador getIdeEmpregador() {
         }
 
         /**
-         * Define o valor da propriedade ideEmpregador.
+         * Sets the value of the ideEmpregador property.
          * 
          * @param value
          *     allowed object is
@@ -144,7 +144,7 @@ public void setIdeEmpregador(TIdeEmpregador value) {
         }
 
         /**
-         * Obtém o valor da propriedade ideTransmissor.
+         * Gets the value of the ideTransmissor property.
          * 
          * @return
          *     possible object is
@@ -156,7 +156,7 @@ public TIdeTransmissor getIdeTransmissor() {
         }
 
         /**
-         * Define o valor da propriedade ideTransmissor.
+         * Sets the value of the ideTransmissor property.
          * 
          * @param value
          *     allowed object is
@@ -168,7 +168,7 @@ public void setIdeTransmissor(TIdeTransmissor value) {
         }
 
         /**
-         * Obtém o valor da propriedade status.
+         * Gets the value of the status property.
          * 
          * @return
          *     possible object is
@@ -180,7 +180,7 @@ public TStatus getStatus() {
         }
 
         /**
-         * Define o valor da propriedade status.
+         * Sets the value of the status property.
          * 
          * @param value
          *     allowed object is
@@ -192,7 +192,7 @@ public void setStatus(TStatus value) {
         }
 
         /**
-         * Obtém o valor da propriedade dadosRecepcaoLote.
+         * Gets the value of the dadosRecepcaoLote property.
          * 
          * @return
          *     possible object is
@@ -204,7 +204,7 @@ public TDadosRecepcao getDadosRecepcaoLote() {
         }
 
         /**
-         * Define o valor da propriedade dadosRecepcaoLote.
+         * Sets the value of the dadosRecepcaoLote property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ObjectFactory.java
index 9b1f4f996..a4c393d0e 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TDadosRecepcao.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TDadosRecepcao.java
index 82a42cf98..ef6f1e48d 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TDadosRecepcao.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TDadosRecepcao.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 
@@ -19,9 +19,9 @@
 /**
  * Define os dados de recepção de um arquivo (lote ou evento).
  * 
- * 

Classe Java de TDadosRecepcao complex type. + *

Java class for TDadosRecepcao complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TDadosRecepcao">
@@ -68,7 +68,7 @@ public class TDadosRecepcao {
     protected String protocoloEnvio;
 
     /**
-     * Obtém o valor da propriedade dhRecepcao.
+     * Gets the value of the dhRecepcao property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public XMLGregorianCalendar getDhRecepcao() {
     }
 
     /**
-     * Define o valor da propriedade dhRecepcao.
+     * Sets the value of the dhRecepcao property.
      * 
      * @param value
      *     allowed object is
@@ -92,7 +92,7 @@ public void setDhRecepcao(XMLGregorianCalendar value) {
     }
 
     /**
-     * Obtém o valor da propriedade versaoAplicativoRecepcao.
+     * Gets the value of the versaoAplicativoRecepcao property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public String getVersaoAplicativoRecepcao() {
     }
 
     /**
-     * Define o valor da propriedade versaoAplicativoRecepcao.
+     * Sets the value of the versaoAplicativoRecepcao property.
      * 
      * @param value
      *     allowed object is
@@ -116,7 +116,7 @@ public void setVersaoAplicativoRecepcao(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade protocoloEnvio.
+     * Gets the value of the protocoloEnvio property.
      * 
      * @return
      *     possible object is
@@ -128,7 +128,7 @@ public String getProtocoloEnvio() {
     }
 
     /**
-     * Define o valor da propriedade protocoloEnvio.
+     * Sets the value of the protocoloEnvio property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeEmpregador.java
index c57c12f17..d5636178d 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do empregador.
  * 
- * 

Classe Java de TIdeEmpregador complex type. + *

Java class for TIdeEmpregador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeEmpregador">
@@ -54,7 +54,7 @@ public class TIdeEmpregador {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public int getTpInsc() {
@@ -62,7 +62,7 @@ public int getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(int value) {
@@ -70,7 +70,7 @@ public void setTpInsc(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeTransmissor.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeTransmissor.java
index 424748f3e..db09c6166 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeTransmissor.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TIdeTransmissor.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do transmissor.
  * 
- * 

Classe Java de TIdeTransmissor complex type. + *

Java class for TIdeTransmissor complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeTransmissor">
@@ -54,7 +54,7 @@ public class TIdeTransmissor {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public int getTpInsc() {
@@ -62,7 +62,7 @@ public int getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(int value) {
@@ -70,7 +70,7 @@ public void setTpInsc(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TOcorrencias.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TOcorrencias.java
index a90da973e..bdbeb0f9a 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TOcorrencias.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TOcorrencias.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 /**
  * Define uma ocorrência encontrada no processamento de um arquivo.
  * 
- * 

Classe Java de TOcorrencias complex type. + *

Java class for TOcorrencias complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TOcorrencias">
@@ -103,9 +103,9 @@ public List getOcorrencia() {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -153,7 +153,7 @@ public static class Ocorrencia {
         protected String localizacao;
 
         /**
-         * Obtém o valor da propriedade codigo.
+         * Gets the value of the codigo property.
          * 
          */
         public int getCodigo() {
@@ -161,7 +161,7 @@ public int getCodigo() {
         }
 
         /**
-         * Define o valor da propriedade codigo.
+         * Sets the value of the codigo property.
          * 
          */
         public void setCodigo(int value) {
@@ -169,7 +169,7 @@ public void setCodigo(int value) {
         }
 
         /**
-         * Obtém o valor da propriedade descricao.
+         * Gets the value of the descricao property.
          * 
          * @return
          *     possible object is
@@ -181,7 +181,7 @@ public String getDescricao() {
         }
 
         /**
-         * Define o valor da propriedade descricao.
+         * Sets the value of the descricao property.
          * 
          * @param value
          *     allowed object is
@@ -193,7 +193,7 @@ public void setDescricao(String value) {
         }
 
         /**
-         * Obtém o valor da propriedade tipo.
+         * Gets the value of the tipo property.
          * 
          */
         public short getTipo() {
@@ -201,7 +201,7 @@ public short getTipo() {
         }
 
         /**
-         * Define o valor da propriedade tipo.
+         * Sets the value of the tipo property.
          * 
          */
         public void setTipo(short value) {
@@ -209,7 +209,7 @@ public void setTipo(short value) {
         }
 
         /**
-         * Obtém o valor da propriedade localizacao.
+         * Gets the value of the localizacao property.
          * 
          * @return
          *     possible object is
@@ -221,7 +221,7 @@ public String getLocalizacao() {
         }
 
         /**
-         * Define o valor da propriedade localizacao.
+         * Sets the value of the localizacao property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TStatus.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TStatus.java
index 01d87034c..1ee959ea1 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TStatus.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/TStatus.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Contém o status atual do lote ou do Evento.
  * 
- * 

Classe Java de TStatus complex type. + *

Java class for TStatus complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TStatus">
@@ -57,7 +57,7 @@ public class TStatus {
     protected TOcorrencias ocorrencias;
 
     /**
-     * Obtém o valor da propriedade cdResposta.
+     * Gets the value of the cdResposta property.
      * 
      */
     public int getCdResposta() {
@@ -65,7 +65,7 @@ public int getCdResposta() {
     }
 
     /**
-     * Define o valor da propriedade cdResposta.
+     * Sets the value of the cdResposta property.
      * 
      */
     public void setCdResposta(int value) {
@@ -73,7 +73,7 @@ public void setCdResposta(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade descResposta.
+     * Gets the value of the descResposta property.
      * 
      * @return
      *     possible object is
@@ -85,7 +85,7 @@ public String getDescResposta() {
     }
 
     /**
-     * Define o valor da propriedade descResposta.
+     * Sets the value of the descResposta property.
      * 
      * @param value
      *     allowed object is
@@ -97,7 +97,7 @@ public void setDescResposta(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade ocorrencias.
+     * Gets the value of the ocorrencias property.
      * 
      * @return
      *     possible object is
@@ -109,7 +109,7 @@ public TOcorrencias getOcorrencias() {
     }
 
     /**
-     * Define o valor da propriedade ocorrencias.
+     * Sets the value of the ocorrencias property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/package-info.java
index 026463982..7c9465042 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/envio/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:31 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:08 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/lote/eventos/envio/retornoEnvio/v1_1_0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ESocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ESocial.java
index cfc69e3bf..1ae9ad8d2 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ESocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ESocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -25,9 +25,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -103,7 +103,7 @@ public class ESocial {
     protected ESocial.RetornoProcessamentoLoteEventos retornoProcessamentoLoteEventos;
 
     /**
-     * Obtém o valor da propriedade retornoProcessamentoLoteEventos.
+     * Gets the value of the retornoProcessamentoLoteEventos property.
      * 
      * @return
      *     possible object is
@@ -115,7 +115,7 @@ public ESocial.RetornoProcessamentoLoteEventos getRetornoProcessamentoLoteEvento
     }
 
     /**
-     * Define o valor da propriedade retornoProcessamentoLoteEventos.
+     * Sets the value of the retornoProcessamentoLoteEventos property.
      * 
      * @param value
      *     allowed object is
@@ -128,9 +128,9 @@ public void setRetornoProcessamentoLoteEventos(ESocial.RetornoProcessamentoLoteE
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -205,7 +205,7 @@ public static class RetornoProcessamentoLoteEventos {
         protected ESocial.RetornoProcessamentoLoteEventos.RetornoEventos retornoEventos;
 
         /**
-         * Obtém o valor da propriedade ideEmpregador.
+         * Gets the value of the ideEmpregador property.
          * 
          * @return
          *     possible object is
@@ -217,7 +217,7 @@ public TIdeEmpregador getIdeEmpregador() {
         }
 
         /**
-         * Define o valor da propriedade ideEmpregador.
+         * Sets the value of the ideEmpregador property.
          * 
          * @param value
          *     allowed object is
@@ -229,7 +229,7 @@ public void setIdeEmpregador(TIdeEmpregador value) {
         }
 
         /**
-         * Obtém o valor da propriedade ideTransmissor.
+         * Gets the value of the ideTransmissor property.
          * 
          * @return
          *     possible object is
@@ -241,7 +241,7 @@ public TIdeTransmissor getIdeTransmissor() {
         }
 
         /**
-         * Define o valor da propriedade ideTransmissor.
+         * Sets the value of the ideTransmissor property.
          * 
          * @param value
          *     allowed object is
@@ -253,7 +253,7 @@ public void setIdeTransmissor(TIdeTransmissor value) {
         }
 
         /**
-         * Obtém o valor da propriedade status.
+         * Gets the value of the status property.
          * 
          * @return
          *     possible object is
@@ -265,7 +265,7 @@ public TStatus getStatus() {
         }
 
         /**
-         * Define o valor da propriedade status.
+         * Sets the value of the status property.
          * 
          * @param value
          *     allowed object is
@@ -277,7 +277,7 @@ public void setStatus(TStatus value) {
         }
 
         /**
-         * Obtém o valor da propriedade dadosRecepcaoLote.
+         * Gets the value of the dadosRecepcaoLote property.
          * 
          * @return
          *     possible object is
@@ -289,7 +289,7 @@ public TDadosRecepcao getDadosRecepcaoLote() {
         }
 
         /**
-         * Define o valor da propriedade dadosRecepcaoLote.
+         * Sets the value of the dadosRecepcaoLote property.
          * 
          * @param value
          *     allowed object is
@@ -301,7 +301,7 @@ public void setDadosRecepcaoLote(TDadosRecepcao value) {
         }
 
         /**
-         * Obtém o valor da propriedade dadosProcessamentoLote.
+         * Gets the value of the dadosProcessamentoLote property.
          * 
          * @return
          *     possible object is
@@ -313,7 +313,7 @@ public TDadosProcessamento getDadosProcessamentoLote() {
         }
 
         /**
-         * Define o valor da propriedade dadosProcessamentoLote.
+         * Sets the value of the dadosProcessamentoLote property.
          * 
          * @param value
          *     allowed object is
@@ -325,7 +325,7 @@ public void setDadosProcessamentoLote(TDadosProcessamento value) {
         }
 
         /**
-         * Obtém o valor da propriedade retornoEventos.
+         * Gets the value of the retornoEventos property.
          * 
          * @return
          *     possible object is
@@ -337,7 +337,7 @@ public ESocial.RetornoProcessamentoLoteEventos.RetornoEventos getRetornoEventos(
         }
 
         /**
-         * Define o valor da propriedade retornoEventos.
+         * Sets the value of the retornoEventos property.
          * 
          * @param value
          *     allowed object is
@@ -350,9 +350,9 @@ public void setRetornoEventos(ESocial.RetornoProcessamentoLoteEventos.RetornoEve
 
 
         /**
-         * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

          * <complexType>
@@ -432,9 +432,9 @@ public List getEv
 
 
             /**
-             * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

              * <complexType>
@@ -483,7 +483,7 @@ public static class Evento {
                 protected Boolean evtDupl;
 
                 /**
-                 * Obtém o valor da propriedade retornoEvento.
+                 * Gets the value of the retornoEvento property.
                  * 
                  * @return
                  *     possible object is
@@ -495,7 +495,7 @@ public TArquivoEsocial getRetornoEvento() {
                 }
 
                 /**
-                 * Define o valor da propriedade retornoEvento.
+                 * Sets the value of the retornoEvento property.
                  * 
                  * @param value
                  *     allowed object is
@@ -536,7 +536,7 @@ public List g
                 }
 
                 /**
-                 * Obtém o valor da propriedade id.
+                 * Gets the value of the id property.
                  * 
                  * @return
                  *     possible object is
@@ -548,7 +548,7 @@ public String getId() {
                 }
 
                 /**
-                 * Define o valor da propriedade id.
+                 * Sets the value of the id property.
                  * 
                  * @param value
                  *     allowed object is
@@ -560,7 +560,7 @@ public void setId(String value) {
                 }
 
                 /**
-                 * Obtém o valor da propriedade evtDupl.
+                 * Gets the value of the evtDupl property.
                  * 
                  * @return
                  *     possible object is
@@ -572,7 +572,7 @@ public Boolean isEvtDupl() {
                 }
 
                 /**
-                 * Define o valor da propriedade evtDupl.
+                 * Sets the value of the evtDupl property.
                  * 
                  * @param value
                  *     allowed object is
@@ -585,9 +585,9 @@ public void setEvtDupl(Boolean value) {
 
 
                 /**
-                 * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

                  * <complexType>
@@ -617,7 +617,7 @@ public static class Tot {
                     protected String tipo;
 
                     /**
-                     * Obtém o valor da propriedade any.
+                     * Gets the value of the any property.
                      * 
                      * @return
                      *     possible object is
@@ -629,7 +629,7 @@ public Element getAny() {
                     }
 
                     /**
-                     * Define o valor da propriedade any.
+                     * Sets the value of the any property.
                      * 
                      * @param value
                      *     allowed object is
@@ -641,7 +641,7 @@ public void setAny(Element value) {
                     }
 
                     /**
-                     * Obtém o valor da propriedade tipo.
+                     * Gets the value of the tipo property.
                      * 
                      * @return
                      *     possible object is
@@ -653,7 +653,7 @@ public String getTipo() {
                     }
 
                     /**
-                     * Define o valor da propriedade tipo.
+                     * Sets the value of the tipo property.
                      * 
                      * @param value
                      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ObjectFactory.java
index 7f22d60bb..2f5dfe6ea 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TArquivoEsocial.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TArquivoEsocial.java
index b56431209..ff43d31d9 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TArquivoEsocial.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TArquivoEsocial.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
  *         Define os dados de um arquivo do eSocial (evento).
  *       
  * 
- * 

Classe Java de TArquivoEsocial complex type. + *

Java class for TArquivoEsocial complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TArquivoEsocial">
@@ -48,7 +48,7 @@ public class TArquivoEsocial {
     protected Element any;
 
     /**
-     * Obtém o valor da propriedade any.
+     * Gets the value of the any property.
      * 
      * @return
      *     possible object is
@@ -60,7 +60,7 @@ public Element getAny() {
     }
 
     /**
-     * Define o valor da propriedade any.
+     * Sets the value of the any property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosProcessamento.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosProcessamento.java
index e501cd8f2..5a34dcc94 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosProcessamento.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosProcessamento.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -16,9 +16,9 @@
 /**
  * Define os dados de processamento de um lote de eventos.
  * 
- * 

Classe Java de TDadosProcessamento complex type. + *

Java class for TDadosProcessamento complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TDadosProcessamento">
@@ -49,7 +49,7 @@ public class TDadosProcessamento {
     protected String versaoAplicativoProcessamentoLote;
 
     /**
-     * Obtém o valor da propriedade versaoAplicativoProcessamentoLote.
+     * Gets the value of the versaoAplicativoProcessamentoLote property.
      * 
      * @return
      *     possible object is
@@ -61,7 +61,7 @@ public String getVersaoAplicativoProcessamentoLote() {
     }
 
     /**
-     * Define o valor da propriedade versaoAplicativoProcessamentoLote.
+     * Sets the value of the versaoAplicativoProcessamentoLote property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosRecepcao.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosRecepcao.java
index 37184ee33..a182ed2ae 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosRecepcao.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TDadosRecepcao.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -19,9 +19,9 @@
 /**
  * Define os dados de recepção de um arquivo de lote.
  * 
- * 

Classe Java de TDadosRecepcao complex type. + *

Java class for TDadosRecepcao complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TDadosRecepcao">
@@ -68,7 +68,7 @@ public class TDadosRecepcao {
     protected String protocoloEnvio;
 
     /**
-     * Obtém o valor da propriedade dhRecepcao.
+     * Gets the value of the dhRecepcao property.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public XMLGregorianCalendar getDhRecepcao() {
     }
 
     /**
-     * Define o valor da propriedade dhRecepcao.
+     * Sets the value of the dhRecepcao property.
      * 
      * @param value
      *     allowed object is
@@ -92,7 +92,7 @@ public void setDhRecepcao(XMLGregorianCalendar value) {
     }
 
     /**
-     * Obtém o valor da propriedade versaoAplicativoRecepcao.
+     * Gets the value of the versaoAplicativoRecepcao property.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public String getVersaoAplicativoRecepcao() {
     }
 
     /**
-     * Define o valor da propriedade versaoAplicativoRecepcao.
+     * Sets the value of the versaoAplicativoRecepcao property.
      * 
      * @param value
      *     allowed object is
@@ -116,7 +116,7 @@ public void setVersaoAplicativoRecepcao(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade protocoloEnvio.
+     * Gets the value of the protocoloEnvio property.
      * 
      * @return
      *     possible object is
@@ -128,7 +128,7 @@ public String getProtocoloEnvio() {
     }
 
     /**
-     * Define o valor da propriedade protocoloEnvio.
+     * Sets the value of the protocoloEnvio property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeEmpregador.java
index b2546496f..81b8d5e88 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do empregador.
  * 
- * 

Classe Java de TIdeEmpregador complex type. + *

Java class for TIdeEmpregador complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeEmpregador">
@@ -54,7 +54,7 @@ public class TIdeEmpregador {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public int getTpInsc() {
@@ -62,7 +62,7 @@ public int getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(int value) {
@@ -70,7 +70,7 @@ public void setTpInsc(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeTransmissor.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeTransmissor.java
index b697983e0..fcd160a69 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeTransmissor.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TIdeTransmissor.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Define a identificação do transmissor.
  * 
- * 

Classe Java de TIdeTransmissor complex type. + *

Java class for TIdeTransmissor complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TIdeTransmissor">
@@ -54,7 +54,7 @@ public class TIdeTransmissor {
     protected String nrInsc;
 
     /**
-     * Obtém o valor da propriedade tpInsc.
+     * Gets the value of the tpInsc property.
      * 
      */
     public int getTpInsc() {
@@ -62,7 +62,7 @@ public int getTpInsc() {
     }
 
     /**
-     * Define o valor da propriedade tpInsc.
+     * Sets the value of the tpInsc property.
      * 
      */
     public void setTpInsc(int value) {
@@ -70,7 +70,7 @@ public void setTpInsc(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade nrInsc.
+     * Gets the value of the nrInsc property.
      * 
      * @return
      *     possible object is
@@ -82,7 +82,7 @@ public String getNrInsc() {
     }
 
     /**
-     * Define o valor da propriedade nrInsc.
+     * Sets the value of the nrInsc property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TOcorrencias.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TOcorrencias.java
index 045605c31..a9a7d2533 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TOcorrencias.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TOcorrencias.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -20,9 +20,9 @@
 /**
  * Define uma ocorrências encontrada no processamento de um arquivo.
  * 
- * 

Classe Java de TOcorrencias complex type. + *

Java class for TOcorrencias complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TOcorrencias">
@@ -103,9 +103,9 @@ public List getOcorrencia() {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -153,7 +153,7 @@ public static class Ocorrencia {
         protected String localizacao;
 
         /**
-         * Obtém o valor da propriedade codigo.
+         * Gets the value of the codigo property.
          * 
          */
         public int getCodigo() {
@@ -161,7 +161,7 @@ public int getCodigo() {
         }
 
         /**
-         * Define o valor da propriedade codigo.
+         * Sets the value of the codigo property.
          * 
          */
         public void setCodigo(int value) {
@@ -169,7 +169,7 @@ public void setCodigo(int value) {
         }
 
         /**
-         * Obtém o valor da propriedade descricao.
+         * Gets the value of the descricao property.
          * 
          * @return
          *     possible object is
@@ -181,7 +181,7 @@ public String getDescricao() {
         }
 
         /**
-         * Define o valor da propriedade descricao.
+         * Sets the value of the descricao property.
          * 
          * @param value
          *     allowed object is
@@ -193,7 +193,7 @@ public void setDescricao(String value) {
         }
 
         /**
-         * Obtém o valor da propriedade tipo.
+         * Gets the value of the tipo property.
          * 
          */
         public short getTipo() {
@@ -201,7 +201,7 @@ public short getTipo() {
         }
 
         /**
-         * Define o valor da propriedade tipo.
+         * Sets the value of the tipo property.
          * 
          */
         public void setTipo(short value) {
@@ -209,7 +209,7 @@ public void setTipo(short value) {
         }
 
         /**
-         * Obtém o valor da propriedade localizacao.
+         * Gets the value of the localizacao property.
          * 
          * @return
          *     possible object is
@@ -221,7 +221,7 @@ public String getLocalizacao() {
         }
 
         /**
-         * Define o valor da propriedade localizacao.
+         * Sets the value of the localizacao property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TStatus.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TStatus.java
index 547f56b2c..01051552b 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TStatus.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/TStatus.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 /**
  * Contém o status atual do lote ou do Evento.
  * 
- * 

Classe Java de TStatus complex type. + *

Java class for TStatus complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType name="TStatus">
@@ -60,7 +60,7 @@ public class TStatus {
     protected TOcorrencias ocorrencias;
 
     /**
-     * Obtém o valor da propriedade cdResposta.
+     * Gets the value of the cdResposta property.
      * 
      */
     public int getCdResposta() {
@@ -68,7 +68,7 @@ public int getCdResposta() {
     }
 
     /**
-     * Define o valor da propriedade cdResposta.
+     * Sets the value of the cdResposta property.
      * 
      */
     public void setCdResposta(int value) {
@@ -76,7 +76,7 @@ public void setCdResposta(int value) {
     }
 
     /**
-     * Obtém o valor da propriedade descResposta.
+     * Gets the value of the descResposta property.
      * 
      * @return
      *     possible object is
@@ -88,7 +88,7 @@ public String getDescResposta() {
     }
 
     /**
-     * Define o valor da propriedade descResposta.
+     * Sets the value of the descResposta property.
      * 
      * @param value
      *     allowed object is
@@ -100,7 +100,7 @@ public void setDescResposta(String value) {
     }
 
     /**
-     * Obtém o valor da propriedade tempoEstimadoConclusao.
+     * Gets the value of the tempoEstimadoConclusao property.
      * 
      * @return
      *     possible object is
@@ -112,7 +112,7 @@ public Integer getTempoEstimadoConclusao() {
     }
 
     /**
-     * Define o valor da propriedade tempoEstimadoConclusao.
+     * Sets the value of the tempoEstimadoConclusao property.
      * 
      * @param value
      *     allowed object is
@@ -124,7 +124,7 @@ public void setTempoEstimadoConclusao(Integer value) {
     }
 
     /**
-     * Obtém o valor da propriedade ocorrencias.
+     * Gets the value of the ocorrencias property.
      * 
      * @return
      *     possible object is
@@ -136,7 +136,7 @@ public TOcorrencias getOcorrencias() {
     }
 
     /**
-     * Define o valor da propriedade ocorrencias.
+     * Sets the value of the ocorrencias property.
      * 
      * @param value
      *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/package-info.java
index 4c77fb755..3c53fde46 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/lote/eventos/retorno/processamento/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:32 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:09:09 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/lote/eventos/envio/retornoProcessamento/v1_3_0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregador.java
index 46d7a4225..5fc38ff5c 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -16,9 +16,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -54,7 +54,7 @@ public class ConsultarIdentificadoresEventosEmpregador {
     protected ConsultarIdentificadoresEventosEmpregador.ConsultaEventosEmpregador consultaEventosEmpregador;
 
     /**
-     * Obtém o valor da propriedade consultaEventosEmpregador.
+     * Gets the value of the consultaEventosEmpregador property.
      * 
      * @return
      *     possible object is
@@ -66,7 +66,7 @@ public ConsultarIdentificadoresEventosEmpregador.ConsultaEventosEmpregador getCo
     }
 
     /**
-     * Define o valor da propriedade consultaEventosEmpregador.
+     * Sets the value of the consultaEventosEmpregador property.
      * 
      * @param value
      *     allowed object is
@@ -79,9 +79,9 @@ public void setConsultaEventosEmpregador(ConsultarIdentificadoresEventosEmpregad
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -107,7 +107,7 @@ public static class ConsultaEventosEmpregador {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -119,7 +119,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregadorResponse.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregadorResponse.java
index c82e22119..52d8a141f 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregadorResponse.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosEmpregadorResponse.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class ConsultarIdentificadoresEventosEmpregadorResponse {
     protected ConsultarIdentificadoresEventosEmpregadorResponse.ConsultarIdentificadoresEventosEmpregadorResult consultarIdentificadoresEventosEmpregadorResult;
 
     /**
-     * Obtém o valor da propriedade consultarIdentificadoresEventosEmpregadorResult.
+     * Gets the value of the consultarIdentificadoresEventosEmpregadorResult property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public ConsultarIdentificadoresEventosEmpregadorResponse.ConsultarIdentificadore
     }
 
     /**
-     * Define o valor da propriedade consultarIdentificadoresEventosEmpregadorResult.
+     * Sets the value of the consultarIdentificadoresEventosEmpregadorResult property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setConsultarIdentificadoresEventosEmpregadorResult(ConsultarIdentifi
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class ConsultarIdentificadoresEventosEmpregadorResult {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabela.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabela.java
index 526fd9373..4176bf89f 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabela.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabela.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -16,9 +16,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -54,7 +54,7 @@ public class ConsultarIdentificadoresEventosTabela {
     protected ConsultarIdentificadoresEventosTabela.ConsultaEventosTabela consultaEventosTabela;
 
     /**
-     * Obtém o valor da propriedade consultaEventosTabela.
+     * Gets the value of the consultaEventosTabela property.
      * 
      * @return
      *     possible object is
@@ -66,7 +66,7 @@ public ConsultarIdentificadoresEventosTabela.ConsultaEventosTabela getConsultaEv
     }
 
     /**
-     * Define o valor da propriedade consultaEventosTabela.
+     * Sets the value of the consultaEventosTabela property.
      * 
      * @param value
      *     allowed object is
@@ -79,9 +79,9 @@ public void setConsultaEventosTabela(ConsultarIdentificadoresEventosTabela.Consu
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -107,7 +107,7 @@ public static class ConsultaEventosTabela {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -119,7 +119,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabelaResponse.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabelaResponse.java
index c1f946953..50ba047fb 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabelaResponse.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTabelaResponse.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class ConsultarIdentificadoresEventosTabelaResponse {
     protected ConsultarIdentificadoresEventosTabelaResponse.ConsultarIdentificadoresEventosTabelaResult consultarIdentificadoresEventosTabelaResult;
 
     /**
-     * Obtém o valor da propriedade consultarIdentificadoresEventosTabelaResult.
+     * Gets the value of the consultarIdentificadoresEventosTabelaResult property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public ConsultarIdentificadoresEventosTabelaResponse.ConsultarIdentificadoresEve
     }
 
     /**
-     * Define o valor da propriedade consultarIdentificadoresEventosTabelaResult.
+     * Sets the value of the consultarIdentificadoresEventosTabelaResult property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setConsultarIdentificadoresEventosTabelaResult(ConsultarIdentificado
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class ConsultarIdentificadoresEventosTabelaResult {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhador.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhador.java
index b4d59371f..aed07e5cb 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhador.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhador.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -16,9 +16,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -54,7 +54,7 @@ public class ConsultarIdentificadoresEventosTrabalhador {
     protected ConsultarIdentificadoresEventosTrabalhador.ConsultaEventosTrabalhador consultaEventosTrabalhador;
 
     /**
-     * Obtém o valor da propriedade consultaEventosTrabalhador.
+     * Gets the value of the consultaEventosTrabalhador property.
      * 
      * @return
      *     possible object is
@@ -66,7 +66,7 @@ public ConsultarIdentificadoresEventosTrabalhador.ConsultaEventosTrabalhador get
     }
 
     /**
-     * Define o valor da propriedade consultaEventosTrabalhador.
+     * Sets the value of the consultaEventosTrabalhador property.
      * 
      * @param value
      *     allowed object is
@@ -79,9 +79,9 @@ public void setConsultaEventosTrabalhador(ConsultarIdentificadoresEventosTrabalh
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -107,7 +107,7 @@ public static class ConsultaEventosTrabalhador {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -119,7 +119,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhadorResponse.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhadorResponse.java
index a04047c26..ef4224f81 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhadorResponse.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarIdentificadoresEventosTrabalhadorResponse.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class ConsultarIdentificadoresEventosTrabalhadorResponse {
     protected ConsultarIdentificadoresEventosTrabalhadorResponse.ConsultarIdentificadoresEventosTrabalhadorResult consultarIdentificadoresEventosTrabalhadorResult;
 
     /**
-     * Obtém o valor da propriedade consultarIdentificadoresEventosTrabalhadorResult.
+     * Gets the value of the consultarIdentificadoresEventosTrabalhadorResult property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public ConsultarIdentificadoresEventosTrabalhadorResponse.ConsultarIdentificador
     }
 
     /**
-     * Define o valor da propriedade consultarIdentificadoresEventosTrabalhadorResult.
+     * Sets the value of the consultarIdentificadoresEventosTrabalhadorResult property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setConsultarIdentificadoresEventosTrabalhadorResult(ConsultarIdentif
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class ConsultarIdentificadoresEventosTrabalhadorResult {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventos.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventos.java
index b7a3b5c7c..d84d0b406 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventos.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventos.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class ConsultarLoteEventos {
     protected ConsultarLoteEventos.Consulta consulta;
 
     /**
-     * Obtém o valor da propriedade consulta.
+     * Gets the value of the consulta property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public ConsultarLoteEventos.Consulta getConsulta() {
     }
 
     /**
-     * Define o valor da propriedade consulta.
+     * Sets the value of the consulta property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setConsulta(ConsultarLoteEventos.Consulta value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class Consulta {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventosResponse.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventosResponse.java
index 7c99e818a..2d984da77 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventosResponse.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ConsultarLoteEventosResponse.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class ConsultarLoteEventosResponse {
     protected ConsultarLoteEventosResponse.ConsultarLoteEventosResult consultarLoteEventosResult;
 
     /**
-     * Obtém o valor da propriedade consultarLoteEventosResult.
+     * Gets the value of the consultarLoteEventosResult property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public ConsultarLoteEventosResponse.ConsultarLoteEventosResult getConsultarLoteE
     }
 
     /**
-     * Define o valor da propriedade consultarLoteEventosResult.
+     * Sets the value of the consultarLoteEventosResult property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setConsultarLoteEventosResult(ConsultarLoteEventosResponse.Consultar
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class ConsultarLoteEventosResult {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventos.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventos.java
index 7a2fdd9e6..d77f1abba 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventos.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventos.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class EnviarLoteEventos {
     protected EnviarLoteEventos.LoteEventos loteEventos;
 
     /**
-     * Obtém o valor da propriedade loteEventos.
+     * Gets the value of the loteEventos property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public EnviarLoteEventos.LoteEventos getLoteEventos() {
     }
 
     /**
-     * Define o valor da propriedade loteEventos.
+     * Sets the value of the loteEventos property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setLoteEventos(EnviarLoteEventos.LoteEventos value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class LoteEventos {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventosResponse.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventosResponse.java
index 2963504e1..cf523cbd8 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventosResponse.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/EnviarLoteEventosResponse.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class EnviarLoteEventosResponse {
     protected EnviarLoteEventosResponse.EnviarLoteEventosResult enviarLoteEventosResult;
 
     /**
-     * Obtém o valor da propriedade enviarLoteEventosResult.
+     * Gets the value of the enviarLoteEventosResult property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public EnviarLoteEventosResponse.EnviarLoteEventosResult getEnviarLoteEventosRes
     }
 
     /**
-     * Define o valor da propriedade enviarLoteEventosResult.
+     * Sets the value of the enviarLoteEventosResult property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setEnviarLoteEventosResult(EnviarLoteEventosResponse.EnviarLoteEvent
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class EnviarLoteEventosResult {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ObjectFactory.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ObjectFactory.java
index 0fcdbcf00..31268c408 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ObjectFactory.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/ObjectFactory.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorId.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorId.java
index 4d947134e..15abd1993 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorId.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorId.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class SolicitarDownloadEventosPorId {
     protected SolicitarDownloadEventosPorId.Solicitacao solicitacao;
 
     /**
-     * Obtém o valor da propriedade solicitacao.
+     * Gets the value of the solicitacao property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public SolicitarDownloadEventosPorId.Solicitacao getSolicitacao() {
     }
 
     /**
-     * Define o valor da propriedade solicitacao.
+     * Sets the value of the solicitacao property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setSolicitacao(SolicitarDownloadEventosPorId.Solicitacao value) {
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class Solicitacao {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorIdResponse.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorIdResponse.java
index a47ca70f5..6f91700db 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorIdResponse.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorIdResponse.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class SolicitarDownloadEventosPorIdResponse {
     protected SolicitarDownloadEventosPorIdResponse.SolicitarDownloadEventosPorIdResult solicitarDownloadEventosPorIdResult;
 
     /**
-     * Obtém o valor da propriedade solicitarDownloadEventosPorIdResult.
+     * Gets the value of the solicitarDownloadEventosPorIdResult property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public SolicitarDownloadEventosPorIdResponse.SolicitarDownloadEventosPorIdResult
     }
 
     /**
-     * Define o valor da propriedade solicitarDownloadEventosPorIdResult.
+     * Sets the value of the solicitarDownloadEventosPorIdResult property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setSolicitarDownloadEventosPorIdResult(SolicitarDownloadEventosPorId
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class SolicitarDownloadEventosPorIdResult {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrRecibo.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrRecibo.java
index 1d40cffe4..8284a2cde 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrRecibo.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrRecibo.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class SolicitarDownloadEventosPorNrRecibo {
     protected SolicitarDownloadEventosPorNrRecibo.Solicitacao solicitacao;
 
     /**
-     * Obtém o valor da propriedade solicitacao.
+     * Gets the value of the solicitacao property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public SolicitarDownloadEventosPorNrRecibo.Solicitacao getSolicitacao() {
     }
 
     /**
-     * Define o valor da propriedade solicitacao.
+     * Sets the value of the solicitacao property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setSolicitacao(SolicitarDownloadEventosPorNrRecibo.Solicitacao value
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class Solicitacao {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrReciboResponse.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrReciboResponse.java
index 90f6863bc..fe1546c13 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrReciboResponse.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/SolicitarDownloadEventosPorNrReciboResponse.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 
@@ -17,9 +17,9 @@
 
 
 /**
- * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

  * <complexType>
@@ -56,7 +56,7 @@ public class SolicitarDownloadEventosPorNrReciboResponse {
     protected SolicitarDownloadEventosPorNrReciboResponse.SolicitarDownloadEventosPorNrReciboResult solicitarDownloadEventosPorNrReciboResult;
 
     /**
-     * Obtém o valor da propriedade solicitarDownloadEventosPorNrReciboResult.
+     * Gets the value of the solicitarDownloadEventosPorNrReciboResult property.
      * 
      * @return
      *     possible object is
@@ -68,7 +68,7 @@ public SolicitarDownloadEventosPorNrReciboResponse.SolicitarDownloadEventosPorNr
     }
 
     /**
-     * Define o valor da propriedade solicitarDownloadEventosPorNrReciboResult.
+     * Sets the value of the solicitarDownloadEventosPorNrReciboResult property.
      * 
      * @param value
      *     allowed object is
@@ -81,9 +81,9 @@ public void setSolicitarDownloadEventosPorNrReciboResult(SolicitarDownloadEvento
 
 
     /**
-     * 

Classe Java de anonymous complex type. + *

Java class for anonymous complex type. * - *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. + *

The following schema fragment specifies the expected content contained within this class. * *

      * <complexType>
@@ -109,7 +109,7 @@ public static class SolicitarDownloadEventosPorNrReciboResult {
         protected Object any;
 
         /**
-         * Obtém o valor da propriedade any.
+         * Gets the value of the any property.
          * 
          * @return
          *     possible object is
@@ -121,7 +121,7 @@ public Object getAny() {
         }
 
         /**
-         * Define o valor da propriedade any.
+         * Sets the value of the any property.
          * 
          * @param value
          *     allowed object is
diff --git a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/package-info.java b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/package-info.java
index e0fa7938e..568f642be 100644
--- a/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/package-info.java
+++ b/src/esocial-comunicacao/src/main/java/br/jus/esocialjt/comunicacao/wsdl/package-info.java
@@ -1,8 +1,8 @@
 //
-// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.11 
-// Consulte http://java.sun.com/xml/jaxb 
-// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. 
-// Gerado em: 2021.03.05 às 03:20:20 PM BRT 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
+// See http://java.sun.com/xml/jaxb 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2024.08.02 at 09:08:41 AM BRT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/servicos/empregador/consulta/identificadores-eventos/v1_0_0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/CanonicalizationMethodType.java
index 0cc9b9fab..bf6154572 100644
--- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/CanonicalizationMethodType.java
+++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/CanonicalizationMethodType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2023.09.04 at 05:30:57 PM BRT 
+// Generated on: 2024.08.02 at 09:09:15 AM BRT 
 //
 
 
diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DSAKeyValueType.java
index 9e17b71d1..4fdd27617 100644
--- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DSAKeyValueType.java
+++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DSAKeyValueType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2023.09.04 at 05:30:57 PM BRT 
+// Generated on: 2024.08.02 at 09:09:15 AM BRT 
 //
 
 
diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DigestMethodType.java
index bb8000e9d..e8331a4be 100644
--- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DigestMethodType.java
+++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/DigestMethodType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2023.09.04 at 05:30:57 PM BRT 
+// Generated on: 2024.08.02 at 09:09:15 AM BRT 
 //
 
 
@@ -71,9 +71,9 @@ public class DigestMethodType {
      * 
      * 

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ESocial.java index 1c9fbfc9f..eb4a07c85 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -128,7 +128,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_tpRegTrab"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_tpRegPrev"/> * <element name="cadIni"> @@ -356,7 +356,7 @@ * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> @@ -383,7 +383,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_cpf"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * <element name="dtAltCPF" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> @@ -606,7 +606,7 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_tpRegTrab"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_tpRegPrev"/> * <element name="cadIni"> @@ -834,7 +834,7 @@ public void setSignature(SignatureType value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> @@ -861,7 +861,7 @@ public void setSignature(SignatureType value) { * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_cpf"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * <element name="dtAltCPF" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> @@ -2201,7 +2201,7 @@ public void setCondIng(byte value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_tpRegTrab"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_tpRegPrev"/> * <element name="cadIni"> @@ -2429,7 +2429,7 @@ public void setCondIng(byte value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> @@ -2456,7 +2456,7 @@ public void setCondIng(byte value) { * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_cpf"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * <element name="dtAltCPF" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> @@ -4888,7 +4888,7 @@ public void setDtIniAbono(XMLGregorianCalendar value) { * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_cpf"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * <element name="dtAltCPF" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> @@ -5043,7 +5043,7 @@ public void setObservacao(String value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="observacao" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_observacao" minOccurs="0"/> * </sequence> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyInfoType.java index dfa60cb46..91156d305 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyValueType.java index 190cfcb3f..aae450b9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ManifestType.java index b42d90924..7ed1c0add 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectFactory.java index e6e416553..1e115b3f7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -61,11 +61,11 @@ public class ObjectFactory { private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.admissao @@ -1128,21 +1128,21 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -1155,21 +1155,21 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectType.java index 19c1a28f6..c49d96dd0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/PGPDataType.java index 49678ec01..76a466412 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RSAKeyValueType.java index 35f89bef0..8fc158fc4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ReferenceType.java index 4803ac1dd..7b9da0853 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RetrievalMethodType.java index 750f31430..a98fabe79 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SPKIDataType.java index 91d16f294..4069cf558 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureMethodType.java index d8c109d3c..d99a52721 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertiesType.java index c3d5ec406..0ee681bcb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertyType.java index 6e153da69..4e3aa67ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureType.java index 7c378c2cf..1c5a7cc87 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureValueType.java index e48c59692..bfc21909b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignedInfoType.java index 98940adc0..8b211ea8b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAlvaraJudicial.java index 991b2b94a..0582f3586 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAprend.java index 8f738d178..42984df48 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TContato.java index 6dec07d30..5dcbdc7c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReemb.java index 344427cce..790faebea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReembTot.java index 306177a9b..fbbe213fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoBrasil.java index 85c57314c..2411e7c67 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoExterior.java index 18cd33680..bda08e5f0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/THorContratual.java index 57e7a0bf1..f0a60f613 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeBeneficio.java index 7a060986b..283772573 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregador.java index 3d46f1a5b..04b99453e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorCnpj.java index 8f3a4ccfa..3cbd84091 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorExclusao.java index 988f932cd..2fe6eddeb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTab.java index d3cc65731..9adf225d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTabInicial.java index 1a9ffb381..2f7c792f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusao.java index 3e28af082..fb539ef0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusaoProcTrab.java index 040abf03a..641762169 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolha.java index e5bbfa11a..c7181ea90 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensal.java index 3bd4e6fe8..12421ce30 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensalPF.java index 3f6512c21..0c9222e7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaOpp.java index c1fe45dfb..e6c05ae9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaSemRetificacao.java index b5250aa27..f129d6232 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoContrib.java index 40d537937..36c312193 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoMensal.java index 9c677fe45..ce94a9463 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoTrab.java index 1662bfafc..5067337ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrab.java index e9249d1f2..c88aa067e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabAdmissao.java index fd0b523a8..9bff82ade 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabIndGuia.java index e6b63bc56..7df21804b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabJud.java index c271671fe..787ad535f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabPJ.java index 541ecddda..17b77a629 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeTrabSemVinculo.java index 4d8a81006..fb9c03abe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculo.java index 2191aa777..331a2b5c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoBaixa.java index bab276514..29d93c460 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoSst.java index db1cde2af..3bf8c6870 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoEstagiario.java index 29bd470d1..a8dffca92 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoInterm.java index 3127719f7..653e6bfde 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoMV.java index 887730740..22f1012f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoRRA.java index c1ef9c44a..b1d9b00f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoSimples.java index a8ecc1f5b..6207a79ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TItensRemunRpps.java index db12e93a5..37e864869 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TLocalTrabGeral.java index 4e4b4f74d..5b530d09e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNascimento.java index 209e06f38..61e1cb579 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNovaValidade.java index 5787c0e02..bc719e5bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TProcJudTrab.java index 3e8096c28..03ef2b790 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TRemuneracao.java index 1334c6f7a..c5b809d0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSexo.java index 69c6f1f3f..04db19a2a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSim.java index bc371e96e..7be89750c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSimNao.java index d539e9a33..f963f4d64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConv.java index 591f9d648..e619794eb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> *

@@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConvFGTS.java index 9f57e5e23..eed5cb156 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> *
@@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSUf.java index f0dc216f1..7a64a6c0b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSucessaoVinc.java index 791924478..b45a0e58c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TTreiCap.java index 467b59115..f617e98d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformType.java index 25c3eb1b6..f6fcd63a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformsType.java index 8a91581ee..318c65a56 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509DataType.java index 6d1cd2374..80dbb2e02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @@ -53,10 +53,10 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509IssuerSerialType.java index 10824a60d..542ddeea5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/package-info.java index 63990921f..1c6f10668 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admissao/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:57 PM BRT +// Generated on: 2024.08.02 at 09:09:15 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtAdmissao/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/CanonicalizationMethodType.java index e61666c4f..6a952e699 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DSAKeyValueType.java index 35c73e265..6bc85a331 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DigestMethodType.java index ddda77f28..001ae835a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ESocial.java index cd575c88a..d7b2efa8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyInfoType.java index 396986b69..c5462f20d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } - * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyValueType.java index f38e0f3b2..78360c9b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ManifestType.java index a8f45935e..379634903 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectFactory.java index a8440c841..084124547 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.admprelim @@ -915,93 +915,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectType.java index 823d6c0aa..4f3921c83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/PGPDataType.java index c1cfee518..de4a3a2be 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RSAKeyValueType.java index 1833bd898..7a0d5be77 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ReferenceType.java index 7ca796c62..5592dd2f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RetrievalMethodType.java index 2518f84c4..180a1cbe6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SPKIDataType.java index 362038583..3c989863e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureMethodType.java index 240e3c738..6c0089076 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertiesType.java index ccae9b907..71a85f20c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertyType.java index 73a0dd0ea..a7fc67f02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureType.java index 1367a7d36..aae75f083 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureValueType.java index 447b3740c..42ceecb1c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignedInfoType.java index b935752fe..cf0c1c259 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAlvaraJudicial.java index 6e0b3d9d7..f1d29a3ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAprend.java index 1d72aac41..701018e29 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TContato.java index 5a53e6459..86981324e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReemb.java index 590c1c405..92a4efa48 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReembTot.java index 29e0c20cd..1c78d25ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoBrasil.java index 098188103..048e0801c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoExterior.java index 26b42692e..196e48f07 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/THorContratual.java index ab29613a4..d5276b679 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeBeneficio.java index e02068486..bb4833c9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregador.java index 47c671b24..d7be9c8ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorCnpj.java index 8072ab234..06a9ab689 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorExclusao.java index 4d94fefbd..386a72f93 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTab.java index 5051d0531..6228074a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTabInicial.java index 1f1a8f886..f810c6288 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusao.java index 422c25c7d..28cfe781a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusaoProcTrab.java index 10098fb4a..8607d6e21 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolha.java index 781f61102..87bff4969 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensal.java index 0defbc4d1..7b1c4f2d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensalPF.java index 813832324..0417c3fb5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaOpp.java index feb6bd59f..0cb330aed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaSemRetificacao.java index 551212707..556ad9e18 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoContrib.java index 6e84eeca3..8aa83d61a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoMensal.java index 8408f4677..d20dc50b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoTrab.java index fd2e6e3da..46d0f2595 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrab.java index d743c54b3..be15e419a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabAdmissao.java index f365f6362..3113d3197 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabIndGuia.java index 2a5824cda..f5491d67a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabJud.java index b7a3e6b80..629f6ebad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabPJ.java index 062900fb6..d179a6b91 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeTrabSemVinculo.java index 865f27660..31ce6940c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculo.java index 4921a604a..ef625e969 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoBaixa.java index 5dbbca5c5..748d31869 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoSst.java index 4553d22a8..eda2bde45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoEstagiario.java index 306aa7337..1a317a45c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoInterm.java index bf44062db..b171a7259 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoMV.java index c71e0ebc7..23d2d6f38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoRRA.java index 592e5ffac..20f11fdf5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoSimples.java index 69374bf3b..38ce52165 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TItensRemunRpps.java index 6a44ba134..9cb82b89d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TLocalTrabGeral.java index 2eb2fbc13..39c053f31 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNascimento.java index 8724a0a13..afd07758c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNovaValidade.java index 7f4c169d7..d1eff97ec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TProcJudTrab.java index bcd41fdca..6fe557060 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TRemuneracao.java index 0c81398eb..261b4b342 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSexo.java index 7fc62e99b..c07e11351 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSim.java index be96dbb1d..766953bca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSimNao.java index d5f904162..72e71637a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConv.java index 242fe5c43..8c79b7c7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConvFGTS.java index 5688fbc15..eb9adef7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSUf.java index 4026d9ea4..cc9949ebd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSucessaoVinc.java index 7fe807b8d..fd2b41343 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TTreiCap.java index 0c7625396..466cbbf25 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformType.java index 5820b06f4..cb92a9ce8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformsType.java index 33e9be990..47bafd0f7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509DataType.java index b9c084881..09a31fcaa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -82,10 +82,10 @@ public class X509DataType { * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link Element } - * {@link Object } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509IssuerSerialType.java index 4e0c122db..e3f1dde06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/package-info.java index 3fd23c24f..f332e5457 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/admprelim/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:56 PM BRT +// Generated on: 2024.08.02 at 09:09:17 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtAdmPrelim/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/CanonicalizationMethodType.java index 341b7dd7f..6b5a470d7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DSAKeyValueType.java index dcae0c257..6e842de75 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DigestMethodType.java index 1ebba3095..cc7cde1c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ESocial.java index a1ad19cf2..c065ff7a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -45,7 +45,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> @@ -296,7 +296,7 @@ public void setSignature(SignatureType value) { * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> @@ -615,7 +615,7 @@ public void setId(String value) { * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyInfoType.java index 53b87addf..046af1764 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyValueType.java index 0d31af563..e9af4ff88 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ManifestType.java index 0f80eac00..ec72adaf1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectFactory.java index 2f48f274b..723150d7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.afasttemp @@ -971,93 +971,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectType.java index f1fe5552a..eb55463dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/PGPDataType.java index ee2ac0dc4..53b4ff2b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RSAKeyValueType.java index dc9d861c5..a3ce140ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ReferenceType.java index 853c0156e..01fbdd7b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RetrievalMethodType.java index f4b8d2ca9..d5cc578d9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SPKIDataType.java index 9d9ff6ee0..410f3f29f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureMethodType.java index b4c4dda97..67c1047fe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertiesType.java index 126c8179b..aa1ed7b66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertyType.java index 87d978edf..76625c7b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureType.java index 72bacadf2..4fb2ef81a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureValueType.java index 8214417d0..77447903a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignedInfoType.java index 930d67d80..d267c26b5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAlvaraJudicial.java index bb84ead90..cace9abe5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAprend.java index 324c2eeb5..cfe65a520 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TContato.java index 04b87694c..93b9ef784 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReemb.java index 1cbbd5260..1986c53f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReembTot.java index e14135fa6..b3c4a45a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoBrasil.java index 469ac5d54..6bfe083b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoExterior.java index a8a0bccce..b30b01611 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/THorContratual.java index fee7fb2c8..eedf9be6d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeBeneficio.java index 9855a3e1c..4d4f20a88 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregador.java index 4aa0de15d..a33eb9816 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorCnpj.java index 6e7381e75..d3f8ffff9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorExclusao.java index d65d49059..7c51019fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTab.java index 24f973e20..40dbe17bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTabInicial.java index 3655ebd0f..395e40268 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusao.java index 9cb4c3e0d..c7a13fc3d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusaoProcTrab.java index 3c8f89bae..3d9ff0dca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolha.java index becffeb75..ac2187f6f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensal.java index 5f5edc770..93411285e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensalPF.java index 0847332ee..5d3fb1ada 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaOpp.java index bdec0c8a1..c74fc4d08 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaSemRetificacao.java index 252b8e059..febfd9385 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoContrib.java index 5ad473714..b23f11a65 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoMensal.java index 6e04ef513..db6285740 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoTrab.java index 7b0304b6a..1ce93744b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrab.java index 4a3ae5f48..d984c60c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabAdmissao.java index 3c0479dfd..404155f31 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabIndGuia.java index cead51de3..b25e760e9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabJud.java index e84f1394c..c30e2df82 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabPJ.java index fbe2e672a..5e06e549b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeTrabSemVinculo.java index ca423fb1e..1d536f9f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculo.java index bfc7294b7..45f15595b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoBaixa.java index 2be9243be..2babf7c4a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoSst.java index 4c64344de..e0153c4c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoEstagiario.java index d92469c47..a2f6cb796 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoInterm.java index 05ea1dd16..6a4d18e92 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoMV.java index 35a20a608..898e0876e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoRRA.java index 8e66b0a9d..5f9d06f1e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoSimples.java index 19337966d..82ea4c558 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TItensRemunRpps.java index fa5b17396..776b4a6b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TLocalTrabGeral.java index 19cb97b6e..06e9e2d7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNascimento.java index a63611009..9ff9862ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNovaValidade.java index 6c1dab067..ad5233dcb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TProcJudTrab.java index a92019a11..777dd7515 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TRemuneracao.java index cc7c6f0e9..98646b0b5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSexo.java index d85059720..4a85ca4ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSim.java index 666473d3c..d7634339d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSimNao.java index 8cce78a94..8e3df6e07 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConv.java index 540fffa47..c5b482e19 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConvFGTS.java index 58461264d..dc9e8396e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSUf.java index 6b17ae3f6..7b65ecf36 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSucessaoVinc.java index a71fae34d..06507a858 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TTreiCap.java index 3f4aba7d6..7c97cd00a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformType.java index ca290b6e6..ed7d47f76 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformsType.java index 24b9542f4..ecddfb750 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509DataType.java index 5bba40e44..665e3255d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509IssuerSerialType.java index 7da5dff64..eedc10f75 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/package-info.java index 3986b0c55..fe0f79fbb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/afasttemp/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:21 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtAfastTemp/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/CanonicalizationMethodType.java index 9ebfb1ec1..aecc09c79 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DSAKeyValueType.java index b152164ed..93c1ecdd5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DigestMethodType.java index 029eebb51..0a7647fb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ESocial.java index bc58238c4..fd1bab4b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyInfoType.java index 90a3dd382..0a389f36e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyValueType.java index 8db19fa8f..05e7d3b54 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ManifestType.java index 8d34640d6..dac3f645a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectFactory.java index d7493e930..5a41ae019 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.altcadastral @@ -954,15 +954,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -981,6 +972,33 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1026,22 +1044,4 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectType.java index a4d05d9e3..6149b0999 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/PGPDataType.java index 47708f3dd..d6c493203 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RSAKeyValueType.java index e466c33cb..a5273383c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ReferenceType.java index cda1bf49c..c99b45516 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RetrievalMethodType.java index ce93120d8..4074ca958 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SPKIDataType.java index e0476078b..64dfa6213 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureMethodType.java index 00efe0da1..2dac45774 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertiesType.java index 1ae028445..976c35a3b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertyType.java index ea40c66cb..da2c3fbaa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureType.java index b98cc2922..f0bbff85c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureValueType.java index 871ce1913..ed2fc54ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignedInfoType.java index 787fe06c2..984c98b3c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAlvaraJudicial.java index 3c91bd1f3..4a5dee14e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAprend.java index 378bf73fe..e3722a5dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TContato.java index 57721eb76..b56f1587f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReemb.java index cb9a30013..2689fc8e9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReembTot.java index cf1dd40c7..d6e433ff2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoBrasil.java index 946a8277d..4cfd3675b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoExterior.java index 50a5ce170..f643cc480 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/THorContratual.java index 3c5638faa..8ca55197f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeBeneficio.java index 022704ac2..651d4098e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregador.java index 3db5c0da4..9c59ed351 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorCnpj.java index 8edd63394..3ae67b5a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorExclusao.java index c5eded842..83e88d5a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTab.java index 78a6e5c03..8b437c7e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTabInicial.java index 775f991a5..d71671602 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusao.java index 0d01d697d..9286a7b44 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusaoProcTrab.java index 28748b1ff..d2b482549 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolha.java index c163f2537..fa0929d03 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensal.java index 617034058..1d4199b07 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensalPF.java index 209f3645c..f279c1d8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaOpp.java index 924760238..8bd548a02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaSemRetificacao.java index aef4d20de..fa4b64212 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoContrib.java index 2001cab72..bad2af023 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoMensal.java index 973a9721d..f3ee38b05 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoTrab.java index 156eb1ce0..9722a9134 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrab.java index e4d1d6982..e057cdbf3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabAdmissao.java index a611d70d5..8bc1a61fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabIndGuia.java index af6690613..55166645c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabJud.java index df2adc656..f47955f0b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabPJ.java index d374d5fc5..df1d3c093 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeTrabSemVinculo.java index 7c2e73f99..2b13faf34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculo.java index 16bcc664e..ac466104e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoBaixa.java index f3437e2e7..1b3f5c820 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoSst.java index af019ad87..5a0e20946 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoEstagiario.java index e30a163e1..98ea2d6ae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoInterm.java index 08db343cb..97ac0f439 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoMV.java index bbd8a9f37..be6636022 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoRRA.java index 252ae6e14..5f636e492 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoSimples.java index 4995cb714..684dfcff1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TItensRemunRpps.java index 77a0b43e9..5f1c76116 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TLocalTrabGeral.java index 817ce3488..44e86a74e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNascimento.java index 74cddcba9..173ce8131 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNovaValidade.java index e767290f8..d99d9e027 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TProcJudTrab.java index 2d5f85164..b88672d02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TRemuneracao.java index 4c2038e4a..1668e6645 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSexo.java index 22393cf9d..b0f6dce00 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSim.java index e5cea7cfb..72464ae7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSimNao.java index da85c05ea..3634436d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConv.java index 55b3820b5..c3821c86a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConvFGTS.java index 7d4045988..9c406edc2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSUf.java index 272848de5..1dde42f84 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSucessaoVinc.java index 16f6e5d4e..8192820c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TTreiCap.java index e73055f7e..905854ae2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformType.java index 1a0b7cc79..10ccb9dcb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformsType.java index 3da5ac7f6..a4368383c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509DataType.java index c8b92324c..abfd6b3b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,12 +80,12 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509IssuerSerialType.java index f5c703418..d6c6893ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/package-info.java index 0a334b1b6..64f26a921 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcadastral/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:58 PM BRT +// Generated on: 2024.08.02 at 09:09:25 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtAltCadastral/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/CanonicalizationMethodType.java index bbd548dd3..54106f2c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DSAKeyValueType.java index 84d5b5196..886ba0356 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DigestMethodType.java index 22add7949..7100b2237 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ESocial.java index 8dbca001f..fd6e89ce7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyInfoType.java index 4afda3e9e..789b8420d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -60,12 +60,12 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @@ -95,15 +95,15 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyValueType.java index c4947e018..ac9710be2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ManifestType.java index aaa335b1c..e7a14c140 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectFactory.java index 8e9f5ec8f..753ad2a24 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.altcontratual @@ -978,6 +978,15 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1023,6 +1032,15 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -1050,22 +1068,4 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectType.java index c9f11ba27..dcb09dc1b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/PGPDataType.java index 07567d6cd..9388c246e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RSAKeyValueType.java index 4fd9297bb..4cc1d4fd4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ReferenceType.java index 29959d3a4..ef984a871 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RetrievalMethodType.java index 76dbe9382..c7f936b1d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SPKIDataType.java index 85446491a..c9e96c040 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureMethodType.java index 4b7071968..0d96d418b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertiesType.java index 53035885d..9c1636dbb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertyType.java index ceb80b0fd..5b84c73d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureType.java index 9c34bf0e7..dbfc15e9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureValueType.java index bb7f1531b..3e18007d3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignedInfoType.java index 2f82c63db..2e6030163 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAlvaraJudicial.java index 75bde07fa..d817777ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAprend.java index 8929c664b..341c3f903 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TContato.java index 1ea045ccc..407022e5d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReemb.java index 8336c04a5..c7614e447 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReembTot.java index e53319edf..4c58111f0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoBrasil.java index 87899949f..84e3e2c26 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoExterior.java index b5a3dbf7e..c1384ec29 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/THorContratual.java index a85d9bf51..d9d749d6b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeBeneficio.java index d7003392e..985cc4805 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregador.java index 000cac0b1..b799ad61c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorCnpj.java index 31de66665..b6a80acf2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorExclusao.java index 9f7175ae7..5683c2f46 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTab.java index 2bc9434f6..9846c3f3e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTabInicial.java index 012573e68..0a4a0ac5e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusao.java index d7be8140f..7ff0c3559 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusaoProcTrab.java index 2896247dc..dea6bb568 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolha.java index 750f06980..45cf22d5b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensal.java index 4ecb51129..a4ce7a3cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensalPF.java index 11a21f068..e8777727d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaOpp.java index d1470a3eb..4b5cf7ea8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaSemRetificacao.java index e087a89e0..613187863 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoContrib.java index 63ec09732..fa43959f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoMensal.java index f0c7db09e..97aee1f20 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoTrab.java index eb3d646db..2cc9e7c57 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrab.java index 48ca6ad64..b3dfd495f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabAdmissao.java index 25b2b575b..b508df3c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabIndGuia.java index 999bf4d20..2ce55898b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabJud.java index e70affc2e..2b405adf8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabPJ.java index ffd64301d..b42eb6123 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeTrabSemVinculo.java index 1d75c879a..b8429d111 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculo.java index b4eb6c2ad..d539a619c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoBaixa.java index d0ad83cc0..36f22172c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoSst.java index da6388b0c..cad0811b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoEstagiario.java index 0471eb960..759bec9b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoInterm.java index 05345b551..575fb4b05 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoMV.java index d389a3c54..6d10a3734 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoRRA.java index 46be7e1a3..06f397d9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoSimples.java index 126c5a16b..016e7bd9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TItensRemunRpps.java index e86a10f0f..7ba07a0f0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TLocalTrabGeral.java index 7043a3722..844892575 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNascimento.java index 110aa35a3..9a52aa358 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNovaValidade.java index 1c0965e65..78a4692f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TProcJudTrab.java index b7d600327..9b82f4a78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TRemuneracao.java index 7c6194600..26963c3c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSexo.java index 25b4b8bcf..bdde76b70 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSim.java index aeb05460a..f62cd781d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSimNao.java index d6696d868..7149e9ae6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConv.java index 6f638beed..5c132031c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConvFGTS.java index f6edacb38..3e8a516fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSUf.java index 2d7a892dc..c7e69e771 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSucessaoVinc.java index 99c89da34..380463ea6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TTreiCap.java index c5736269b..cd81b9a6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformType.java index 9e129126c..6ed0b90e9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformsType.java index f2a3f82ce..8c191c606 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509DataType.java index f67762c70..5f942b5c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509IssuerSerialType.java index 8cd13097b..cd0c586b8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/package-info.java index d985a35d6..d3a87831b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/altcontratual/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:27 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtAltContratual/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/CanonicalizationMethodType.java index 938dafd97..cd017f145 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DSAKeyValueType.java index a854a3955..7bd6b2bfd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DigestMethodType.java index d8dd156f6..9ad617550 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ESocial.java index 4cec5d7b9..92ebacd3e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -77,6 +77,8 @@ * <element name="natAtividade" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_natAtividade"/> * <element name="tpContr" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpContr"/> * <element name="dtTerm" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> + * <element name="tpInscTrab" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_3_4" minOccurs="0"/> + * <element name="localTrabalho" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_12_14" minOccurs="0"/> * <element name="cargo" maxOccurs="99"> * <complexType> * <complexContent> @@ -108,7 +110,20 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> + * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_8_11_14" minOccurs="0"/> + * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula"/> + * <element name="sucessaoVinc" minOccurs="0"> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -268,6 +283,8 @@ public void setSignature(SignatureType value) { * <element name="natAtividade" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_natAtividade"/> * <element name="tpContr" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpContr"/> * <element name="dtTerm" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> + * <element name="tpInscTrab" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_3_4" minOccurs="0"/> + * <element name="localTrabalho" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_12_14" minOccurs="0"/> * <element name="cargo" maxOccurs="99"> * <complexType> * <complexContent> @@ -299,7 +316,20 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> + * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_8_11_14" minOccurs="0"/> + * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula"/> + * <element name="sucessaoVinc" minOccurs="0"> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -506,6 +536,8 @@ public void setId(String value) { * <element name="natAtividade" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_natAtividade"/> * <element name="tpContr" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpContr"/> * <element name="dtTerm" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> + * <element name="tpInscTrab" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_3_4" minOccurs="0"/> + * <element name="localTrabalho" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_12_14" minOccurs="0"/> * <element name="cargo" maxOccurs="99"> * <complexType> * <complexContent> @@ -537,7 +569,20 @@ public void setId(String value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> + * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_8_11_14" minOccurs="0"/> + * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula"/> + * <element name="sucessaoVinc" minOccurs="0"> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -587,6 +632,8 @@ public void setId(String value) { "natAtividade", "tpContr", "dtTerm", + "tpInscTrab", + "localTrabalho", "cargo", "remuneracao", "incorporacao", @@ -613,6 +660,8 @@ public static class InfoAnotJud { protected byte tpContr; @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtTerm; + protected Byte tpInscTrab; + protected String localTrabalho; @XmlElement(required = true) protected List cargo; @XmlElement(required = true) @@ -821,6 +870,54 @@ public void setDtTerm(XMLGregorianCalendar value) { this.dtTerm = value; } + /** + * Gets the value of the tpInscTrab property. + * + * @return + * possible object is + * {@link Byte } + * + */ + public Byte getTpInscTrab() { + return tpInscTrab; + } + + /** + * Sets the value of the tpInscTrab property. + * + * @param value + * allowed object is + * {@link Byte } + * + */ + public void setTpInscTrab(Byte value) { + this.tpInscTrab = value; + } + + /** + * Gets the value of the localTrabalho property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocalTrabalho() { + return localTrabalho; + } + + /** + * Sets the value of the localTrabalho property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocalTrabalho(String value) { + this.localTrabalho = value; + } + /** * Gets the value of the cargo property. * @@ -1247,7 +1344,20 @@ public void setDtProjFimAPI(XMLGregorianCalendar value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> + * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_8_11_14" minOccurs="0"/> + * <element name="matIncorp" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula"/> + * <element name="sucessaoVinc" minOccurs="0"> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -1258,12 +1368,66 @@ public void setDtProjFimAPI(XMLGregorianCalendar value) { */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { - "matIncorp" + "tpInsc", + "nrInsc", + "matIncorp", + "sucessaoVinc" }) public static class Incorporacao { + protected Byte tpInsc; + protected String nrInsc; @XmlElement(required = true) protected String matIncorp; + protected ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc sucessaoVinc; + + /** + * Gets the value of the tpInsc property. + * + * @return + * possible object is + * {@link Byte } + * + */ + public Byte getTpInsc() { + return tpInsc; + } + + /** + * Sets the value of the tpInsc property. + * + * @param value + * allowed object is + * {@link Byte } + * + */ + public void setTpInsc(Byte value) { + this.tpInsc = value; + } + + /** + * Gets the value of the nrInsc property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNrInsc() { + return nrInsc; + } + + /** + * Sets the value of the nrInsc property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNrInsc(String value) { + this.nrInsc = value; + } /** * Gets the value of the matIncorp property. @@ -1289,6 +1453,86 @@ public void setMatIncorp(String value) { this.matIncorp = value; } + /** + * Gets the value of the sucessaoVinc property. + * + * @return + * possible object is + * {@link ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc } + * + */ + public ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc getSucessaoVinc() { + return sucessaoVinc; + } + + /** + * Sets the value of the sucessaoVinc property. + * + * @param value + * allowed object is + * {@link ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc } + * + */ + public void setSucessaoVinc(ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc value) { + this.sucessaoVinc = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+                 * <complexType>
+                 *   <complexContent>
+                 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+                 *       <sequence>
+                 *         <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/>
+                 *       </sequence>
+                 *     </restriction>
+                 *   </complexContent>
+                 * </complexType>
+                 * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "dtTransf" + }) + public static class SucessaoVinc { + + @XmlElement(required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dtTransf; + + /** + * Gets the value of the dtTransf property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDtTransf() { + return dtTransf; + } + + /** + * Sets the value of the dtTransf property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDtTransf(XMLGregorianCalendar value) { + this.dtTransf = value; + } + + } + } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyInfoType.java index 1880055d9..97a8c40ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyValueType.java index 66813e963..ee7b68f76 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ManifestType.java index ca5936363..4afaee2ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectFactory.java index 65bdf465a..dbb39e5b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -122,6 +122,14 @@ public ESocial.EvtAnotJud.InfoAnotJud createESocialEvtAnotJudInfoAnotJud() { return new ESocial.EvtAnotJud.InfoAnotJud(); } + /** + * Create an instance of {@link ESocial.EvtAnotJud.InfoAnotJud.Incorporacao } + * + */ + public ESocial.EvtAnotJud.InfoAnotJud.Incorporacao createESocialEvtAnotJudInfoAnotJudIncorporacao() { + return new ESocial.EvtAnotJud.InfoAnotJud.Incorporacao(); + } + /** * Create an instance of {@link SignatureType } * @@ -714,14 +722,6 @@ public ESocial.EvtAnotJud.InfoAnotJud.Remuneracao createESocialEvtAnotJudInfoAno return new ESocial.EvtAnotJud.InfoAnotJud.Remuneracao(); } - /** - * Create an instance of {@link ESocial.EvtAnotJud.InfoAnotJud.Incorporacao } - * - */ - public ESocial.EvtAnotJud.InfoAnotJud.Incorporacao createESocialEvtAnotJudInfoAnotJudIncorporacao() { - return new ESocial.EvtAnotJud.InfoAnotJud.Incorporacao(); - } - /** * Create an instance of {@link ESocial.EvtAnotJud.InfoAnotJud.Afastamento } * @@ -738,6 +738,14 @@ public ESocial.EvtAnotJud.InfoAnotJud.Desligamento createESocialEvtAnotJudInfoAn return new ESocial.EvtAnotJud.InfoAnotJud.Desligamento(); } + /** + * Create an instance of {@link ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc } + * + */ + public ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc createESocialEvtAnotJudInfoAnotJudIncorporacaoSucessaoVinc() { + return new ESocial.EvtAnotJud.InfoAnotJud.Incorporacao.SucessaoVinc(); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >}} * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectType.java index 57c454064..9839318fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/PGPDataType.java index 2fbda591b..489c81d3a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RSAKeyValueType.java index b6e2cb892..fa404a8a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ReferenceType.java index b28dc0328..a64ba8a33 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RetrievalMethodType.java index 4e7f1733c..e82d18a78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SPKIDataType.java index a49aece5e..e754726f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureMethodType.java index e2cbf3199..0b7639750 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertiesType.java index 15790c2f9..c900163ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertyType.java index 1fee20f23..15f44cf4f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureType.java index 6262afc29..20e661dbe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureValueType.java index 6a9864c16..951882b2d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignedInfoType.java index de2ce299d..9035e0026 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAlvaraJudicial.java index 1e15ac074..632741434 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAprend.java index 56488b783..9d8fa5d4b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TContato.java index 79c280836..73ce8348e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReemb.java index edd747a87..54ee9fd22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReembTot.java index 66b05bcad..8fdaa5211 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoBrasil.java index dad4d8dea..9fd3a7187 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoExterior.java index 4abfc514b..6c2e81a12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/THorContratual.java index 2e241e3e9..62ac878e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeBeneficio.java index 911dc29ec..16ee0d0b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregador.java index 57fba4366..5d1eca8bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorCnpj.java index bc6b6ebf6..5356cbb39 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorExclusao.java index 0990f9682..e73b007b2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTab.java index b7b148b3c..d84a7e231 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTabInicial.java index 4e6490b92..70aaa5ba8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusao.java index cac8b93ca..0cf66116d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusaoProcTrab.java index 8a6687c2d..796322134 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolha.java index 4518a92a2..eb97c2e55 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensal.java index 1c4fad1d1..2c57bb88d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensalPF.java index d2587ca33..e56a72080 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaOpp.java index 5c6f5fab2..9bb836720 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaSemRetificacao.java index 7b6e52193..884cc1728 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoContrib.java index 2f8b18f7f..6ad127f79 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoMensal.java index 01d53ba9c..fcbfe6e7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoTrab.java index 329d17447..0c1dec7ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrab.java index 2f5561c8b..da5d9f8e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabAdmissao.java index 1cee3b81f..b358961cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabIndGuia.java index 60c6ad6dd..c712ac678 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabJud.java index c1a95cd3d..fcba38442 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabPJ.java index 31b94cd8f..50b9c4b6d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeTrabSemVinculo.java index 81c552c57..1ffce8012 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculo.java index 7a3462c0a..8f83c2cea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoBaixa.java index b2d33aba0..1fd009f40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoSst.java index 0bc482765..cdad44bdb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoEstagiario.java index 84887f713..02d8a8fdc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoInterm.java index 84923cca9..9740d43c7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoMV.java index 4c469b16c..c5bfcf0cb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoRRA.java index a178b9d4c..8e59e290a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoSimples.java index 6a396c296..52bd9ba5b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TItensRemunRpps.java index 4f629e591..4591e7e0d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TLocalTrabGeral.java index 58badea50..66507ca43 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNascimento.java index 7e94489c7..702c23b72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNovaValidade.java index c47bedd04..bb545278a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TProcJudTrab.java index 5e60a85d5..202820314 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TRemuneracao.java index cc1037c31..2fbb45783 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSexo.java index 968ab485f..739dfa365 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSim.java index 0de03039e..473be38e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSimNao.java index 80f816f89..e93e201ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConv.java index fc9e4f019..fa33c65a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConvFGTS.java index ff64f1462..231a638ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSUf.java index 2fea8e600..8fa2b9f24 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSucessaoVinc.java index cece7c954..f994c4fc9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TTreiCap.java index 4272dfbd4..30da3669a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformType.java index 24d37015f..793e09286 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformsType.java index 6398cb70f..c68247498 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509DataType.java index bbc55ced9..f1e4210bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509IssuerSerialType.java index 6559c287a..369247574 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/package-info.java index 13ea49c96..4e292a024 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/anotjud/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:30 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtAnotJud/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/CanonicalizationMethodType.java index 6f438d6e0..61de8e08a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DSAKeyValueType.java index 9452278b3..7fdb907c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DigestMethodType.java index 0b9e39604..2a84757b8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ESocial.java index 97edb1a73..65a81340e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyInfoType.java index ec059df54..5e1bc00f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -60,12 +60,12 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @@ -95,15 +95,15 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyValueType.java index cc7143c9b..04497abc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ManifestType.java index 434035088..69c02cd7d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectFactory.java index a1190a9d4..53be1fba6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.baixa @@ -906,6 +906,15 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -951,6 +960,15 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -978,22 +996,4 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectType.java index fc5cdd6b1..3dc496e67 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/PGPDataType.java index eb7f9ae44..b4f365236 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RSAKeyValueType.java index fcccaa745..0680be880 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ReferenceType.java index bfd995cf4..d692c8d1f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RetrievalMethodType.java index c95e0a6c5..d2615d205 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SPKIDataType.java index 742b82635..c53b13514 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureMethodType.java index 54224c3e3..1d1c9bcee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertiesType.java index 34460b73f..72a80989b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertyType.java index fa6dbdabf..1e686df05 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureType.java index f93f48f03..15597d5e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureValueType.java index a97ddd249..ed8ab4858 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignedInfoType.java index 10983a74f..0ab85a141 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAlvaraJudicial.java index fedef137b..43320578f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAprend.java index 4377845c6..cc8d25ef6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TContato.java index 69fe03ba7..5dfc6e2fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReemb.java index e99a48338..f51a4ad5c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReembTot.java index 334341eb2..e58cd9406 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoBrasil.java index 0bba91891..b0a0e15bf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoExterior.java index 54344d8ca..e739178fd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/THorContratual.java index 8dcc3b698..91a2213f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeBeneficio.java index d58fedcdc..55dfe75ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregador.java index aaff07e19..877f49937 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorCnpj.java index 522b41e95..454241f8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorExclusao.java index 519154b13..e3ede27df 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTab.java index a2f74b5c0..89c806f57 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTabInicial.java index 0f4309e10..474f9362c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusao.java index 144d44880..6e206d5d6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusaoProcTrab.java index 814f11676..ece586c2b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolha.java index 7d1ce9a72..5b48c30a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensal.java index e7b85486c..c2c47aabb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensalPF.java index 011d3d262..6c8d02e72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaOpp.java index 1233cb3fa..87fe65cd8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaSemRetificacao.java index 9f822ce67..bc24c46e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoContrib.java index a53ad22e6..e7b02aea4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoMensal.java index 96ef8ddf6..1d33af42a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoTrab.java index 780e4da78..83df73f59 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrab.java index fcbb37996..9282854d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabAdmissao.java index 0661deca6..6d31c051d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabIndGuia.java index 695fc12ab..6ea9dccba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabJud.java index 0b469524e..a461fb5cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabPJ.java index 542b8f0f8..ddfa34b27 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeTrabSemVinculo.java index fd9785524..f324924fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculo.java index 62a0af10f..cefe2a117 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoBaixa.java index 498e78a4d..9cb627abf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoSst.java index cd8216097..9cc813805 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoEstagiario.java index 274882ad3..e361583ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoInterm.java index 1729dff19..f17a4d22b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoMV.java index 0313ab936..5acc093ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoRRA.java index 2783d712d..e1e718e34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoSimples.java index daf903355..39b0c1a2b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TItensRemunRpps.java index 32143301e..46c0c787c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TLocalTrabGeral.java index 6c1b417eb..5186dfc6d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNascimento.java index 3e398815f..0a803c8aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNovaValidade.java index 46cb69542..fc339e850 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TProcJudTrab.java index 31deacb32..911490b00 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TRemuneracao.java index a7dc1dce0..3b11bf402 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSexo.java index 09e6c52bf..64659b878 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSim.java index 3921f627a..3dd1b52aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSimNao.java index 245ae9821..0b0b41833 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConv.java index 50445128d..d32b461f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConvFGTS.java index 50ce77f03..537699c3b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSUf.java index 90d437e63..54f10f495 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSucessaoVinc.java index 364d876bd..0776cc376 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TTreiCap.java index cd3cdcdf0..755751a80 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformType.java index b55f22421..2ef1a1bea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformsType.java index 7964c1e8c..c60106eef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509DataType.java index a50b36e07..59f972891 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509IssuerSerialType.java index 37c38556b..51fbd5625 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/package-info.java index 32027e8c9..87b1c8277 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/baixa/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:30:59 PM BRT +// Generated on: 2024.08.02 at 09:09:35 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtBaixa/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/CanonicalizationMethodType.java index c798754ea..ba86c57af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DSAKeyValueType.java index 4274a24a6..9373d42e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DigestMethodType.java index b9a58279b..7bd7f95a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ESocial.java index c2b9a91c3..12d117873 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -87,7 +87,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> @@ -361,7 +361,7 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> @@ -747,7 +747,7 @@ public void setCpfTrab(String value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> @@ -1008,7 +1008,7 @@ public List getIdeEstab() { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> @@ -1256,7 +1256,7 @@ public List getIdeLotacao() { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> @@ -1542,7 +1542,7 @@ public List getI * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyInfoType.java index 99f0756f4..d42c88319 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyValueType.java index f327e64d4..33fe14037 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link Element } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ManifestType.java index 2cbd5e1cb..1d455be85 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectFactory.java index b92daf524..c04465bba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.basesfgts @@ -994,24 +994,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * @@ -1022,21 +1004,12 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -1084,4 +1057,31 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectType.java index b729963f4..44f3b0852 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/PGPDataType.java index d8a027ea2..c4656b763 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RSAKeyValueType.java index 292b07d2f..6163b6c36 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ReferenceType.java index 30c7d0eaf..d018db0f0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RetrievalMethodType.java index ffbf4b2f4..6fefe2feb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SPKIDataType.java index 184fce84d..4e24dafac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureMethodType.java index a91df1ecc..648544533 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -76,8 +76,8 @@ public class SignatureMethodType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertiesType.java index 78fbbbb6f..384c54e70 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertyType.java index aaa21498f..6466673b2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureType.java index 3b0953c4c..178ae4882 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureValueType.java index a4f14b01f..26120a522 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignedInfoType.java index 5fb8388f6..b608292f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAlvaraJudicial.java index fdb960bf7..907b7d66f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAprend.java index 4cd72b999..4fd0fe014 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TContato.java index c7e4b4e49..a4f7a51f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReemb.java index f47bc0ecf..18b07c558 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReembTot.java index 3da052a76..22a869cb8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetRubrSusp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetRubrSusp.java index 6f0129a58..c0f512685 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetRubrSusp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TDetRubrSusp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoBrasil.java index 95b63565a..1b63b3e54 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoExterior.java index 494b14068..6b9cd6607 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/THorContratual.java index 38315bee7..a2f179719 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeBeneficio.java index 32d473132..aadcca407 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregador.java index e8fbbca30..e23f18366 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorCnpj.java index 7f134ccab..48dbc424f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorExclusao.java index 55c1c08e4..ad41f01be 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTab.java index bb46b5a41..86f99f994 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTabInicial.java index 546625b82..8e4c88d65 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusao.java index 36c1db12a..bd7d268b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusaoProcTrab.java index 48e2b9047..b0c092bb1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolha.java index 83aa24c5a..8903197c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensal.java index faeaa9751..578754aab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensalPF.java index 7bae3cd30..42063fc31 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaOpp.java index a71942129..c895c78c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaSemRetificacao.java index fb554d7e7..2113ef8c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoContrib.java index 987ea7124..222fdf434 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoMensal.java index fa7cd0873..0347986ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoTrab.java index 2a7eda15f..f0e855213 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrab.java index dd797c495..88bdfaa5a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabAdmissao.java index e109472a9..f3a876aaf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabIndGuia.java index b1cbc7dce..312e9cd8b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabJud.java index 44e132a4e..f7fce1cd5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabPJ.java index 0331f34fb..c09da5c68 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeTrabSemVinculo.java index 9fcd9d72f..821e09a20 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculo.java index 258cb5e13..baf1d8601 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoBaixa.java index f09967406..fadb21b09 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoSst.java index 1a0cbd0ef..3137af297 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoEstagiario.java index d0750e6f2..044d470c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoInterm.java index 67c173f59..44993a6bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoMV.java index 7e673877d..1d8b48e10 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoRRA.java index 4047d7185..9afbac8cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoSimples.java index 98b7c199a..e776f00a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TItensRemunRpps.java index ec9623917..5a110711f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TLocalTrabGeral.java index c8a065210..4713b48fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNascimento.java index 3ac85e026..3040eed7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNovaValidade.java index e6245b884..37f111276 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TProcJudTrab.java index bd0ecdc1d..a0aeb342d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TRemuneracao.java index 5ec889b52..f4792c6ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSexo.java index e96b36415..c653bb774 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSim.java index 96724056a..2da1aca33 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSimNao.java index ac0acd452..a3aae1085 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConv.java index 8bed3865c..14e0c0d13 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConvFGTS.java index c636508e3..98ba220b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSUf.java index 8ab887ffc..bece030c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSucessaoVinc.java index ff054eb5d..e1487ad0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TTreiCap.java index fec455bb5..97e4dcdbf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformType.java index 61c269f14..aa5db421c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -75,9 +75,9 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformsType.java index 1410dba4f..a0634287d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509DataType.java index 44d851361..75d48cbcc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509IssuerSerialType.java index 88dc98a45..6b009e8b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/package-info.java index fb99bbd24..be3ba456a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basesfgts/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:38 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtBasesFGTS/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/CanonicalizationMethodType.java index f551f3e51..3e43f7c4f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DSAKeyValueType.java index e8e3b6d41..f97c79d47 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DigestMethodType.java index 770429c70..bad4046e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ESocial.java index 66cfa60c7..bae74e87c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -158,7 +158,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codCateg"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="infoBaseCS" maxOccurs="99" minOccurs="0"> @@ -515,7 +515,7 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codCateg"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="infoBaseCS" maxOccurs="99" minOccurs="0"> @@ -1416,7 +1416,7 @@ public void setCodSusp(BigInteger value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codCateg"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="infoBaseCS" maxOccurs="99" minOccurs="0"> @@ -1655,7 +1655,7 @@ public List getIdeEstabLot() { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codCateg"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="infoBaseCS" maxOccurs="99" minOccurs="0"> @@ -1926,7 +1926,7 @@ public List getInfoCateg * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codCateg"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="infoBaseCS" maxOccurs="99" minOccurs="0"> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyInfoType.java index 6c57763c1..faf11c84c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } - * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyValueType.java index 0efe2ab2a..3c759d29c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ManifestType.java index 1339b757b..bf8c20877 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectFactory.java index fd379fc3d..cf3023f0a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.basestrab @@ -1011,93 +1011,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectType.java index b46777587..a23d9ccc2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/PGPDataType.java index fb789fce0..3457cd74b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RSAKeyValueType.java index d4db21d71..cf48a25f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ReferenceType.java index d458e059c..b850b5906 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RetrievalMethodType.java index 3306b2db2..2b4b5cd06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SPKIDataType.java index 0a3577eaa..2eb83704b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureMethodType.java index 664f4987b..575a4a040 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertiesType.java index 0698d69f8..abf32c777 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertyType.java index 63aeadb1c..cee9340f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureType.java index 628376082..7e5a4cf58 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureValueType.java index daef7badd..76d1c0385 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignedInfoType.java index bd8331b66..a15bbe555 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAlvaraJudicial.java index 06817e62e..161781720 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAprend.java index 6b9e141a0..551f47dd7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TContato.java index 6dbf96168..e27b4b419 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReemb.java index fe1330fda..226716409 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReembTot.java index d3b92d3c9..e4ad39829 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoBrasil.java index cdf215cd2..884e0d44a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoExterior.java index 26655eeeb..de2404863 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/THorContratual.java index f2513b078..933c3de60 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeBeneficio.java index 66b599482..84f5ae6ae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregador.java index 7cea9a990..ea7458e34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorCnpj.java index 5e56ed727..fd579129d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorExclusao.java index d572f2fe8..5fc1d2e7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTab.java index 2aea66aae..f107e310b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTabInicial.java index d2f2a4ade..836f67c73 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusao.java index 0e23979e4..e846c7626 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusaoProcTrab.java index 9e0f93864..51d9eac09 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolha.java index 249be3ea6..2898f2fa3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensal.java index 0bdfadc88..91cf7f524 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensalPF.java index 2a3812f5f..206892a6f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaOpp.java index cf0fd98a3..9404c9656 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaSemRetificacao.java index 6efefb2b1..706b7caad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoContrib.java index 308d485a4..7a8cdf2a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoMensal.java index 768ae43f2..47cf73fed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoTrab.java index e070b4f29..4896de772 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrab.java index f73b2580d..d1773f175 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabAdmissao.java index effd559ba..f922c9b9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabIndGuia.java index d62df6f88..ca7005ef0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabJud.java index dcebfbc39..b4953afc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabPJ.java index f9d66d349..22fdaa9bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeTrabSemVinculo.java index c302b81cb..059fc94ec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculo.java index e3831228f..1b41eb3c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoBaixa.java index 3cf9331a2..b6b8d18ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoSst.java index 8e1724333..5fad178ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoEstagiario.java index 28eb56ef7..3cd231051 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoInterm.java index 691c30379..47d4cdabf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoMV.java index 61042b938..be80db52c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoRRA.java index c8d7fc1c7..49c60a8ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoSimples.java index 901a053e5..d9758bc3b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TItensRemunRpps.java index 22e16a0be..6cc904f8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TLocalTrabGeral.java index ed41c5a1a..0d4c88737 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNascimento.java index caabba165..9557ef6fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNovaValidade.java index baa6a4740..19992145e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TProcJudTrab.java index 2978d2d8a..0cee1cd96 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TRemuneracao.java index f59a1f8cc..c351dd0c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSexo.java index 5a8047d59..9c5a215f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSim.java index 702c51159..02a092049 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSimNao.java index 1e4ea7f61..f9c71cfb4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConv.java index 44f1b829f..54b1ce949 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConvFGTS.java index 2078f5db2..c827bc2c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSUf.java index 82dd24f30..f5f9e5ece 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSucessaoVinc.java index 338efc7b2..11b96f582 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TTreiCap.java index e157307c7..646d4c34f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformType.java index 388f588c4..0a981ea91 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformsType.java index e2345e398..fb6c150e0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509DataType.java index 2b2b24455..5339ed08f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -82,10 +82,10 @@ public class X509DataType { * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link Element } - * {@link Object } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509IssuerSerialType.java index 3d7eb781a..0b2dd3fb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/package-info.java index 2938856a6..15850f1f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/basestrab/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:00 PM BRT +// Generated on: 2024.08.02 at 09:09:41 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtBasesTrab/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/CanonicalizationMethodType.java index a0dc49d45..dbafa00e2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DSAKeyValueType.java index 852ae6db3..c437af0b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DigestMethodType.java index 5ca54732a..249f2d85c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link String } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ESocial.java index 32db70351..b47043b04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyInfoType.java index 25c82fcaa..b591ba303 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -62,11 +62,11 @@ public class KeyInfoType { @XmlElementRefs({ @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyValueType.java index c2808b18c..13237ad13 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link String } - * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ManifestType.java index 11802b19d..f889db98b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectFactory.java index 22931ecf3..947975186 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -56,8 +56,6 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); @@ -65,7 +63,9 @@ public class ObjectFactory { private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.benprrp @@ -946,24 +946,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1027,6 +1009,15 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * @@ -1036,4 +1027,13 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectType.java index ea7213899..1abfbe44e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link String } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/PGPDataType.java index 0f8b417db..3ff1ed295 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } + * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RSAKeyValueType.java index b4deaadbc..6dcb6c6d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ReferenceType.java index 1656de197..42a0118d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RetrievalMethodType.java index 4853baca5..3f6c468ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SPKIDataType.java index 7b7545e67..52cc3ebb9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } - * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureMethodType.java index e2ff4032e..e983320c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -75,8 +75,8 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertiesType.java index 3091d647f..bd9f44642 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertyType.java index b8725cbbb..5dbfa3165 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link String } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureType.java index cebc534b7..4a1000829 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureValueType.java index ab1abd7e7..2f5f78f4e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignedInfoType.java index 0dcdc009d..61daff761 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAlvaraJudicial.java index 47d579a3a..a31495be8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAprend.java index ec1d5fb3e..11a17b01d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TContato.java index a92c1b530..c3e0172e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReemb.java index a455e0a27..a3d895f19 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReembTot.java index 81f71ba62..677a290a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoBrasil.java index c697d581b..731c378de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoExterior.java index 1882effb6..1ed78b30d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/THorContratual.java index 50cfbeba9..0ab954366 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeBeneficio.java index eccc2b537..3437cea11 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregador.java index a5e4e09ed..332168917 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorCnpj.java index 1da5c545c..3dfcce45b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorExclusao.java index 12a2fe5cf..075ec23ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEstab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEstab.java index eeb9958f3..93d0d6909 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEstab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEstab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTab.java index 5e87c8f38..532a07da7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTabInicial.java index f8b3764be..16634b6c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusao.java index ef7cdb2a8..59fb9e7fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusaoProcTrab.java index 1bcaa4288..522e20d12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolha.java index 1e661839f..0703b55ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensal.java index ed2ca912a..26c489a0f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensalPF.java index 578b0b4d2..9e244cd7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaOpp.java index 8af76507e..ae739b697 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaSemRetificacao.java index 5e16f7785..876018180 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoContrib.java index 25394f141..eb4d6fc64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoMensal.java index 4ab408270..6672cbaf7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoTrab.java index 01761b0b2..071b5ab9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrab.java index bfe12b21a..3f211c27d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabAdmissao.java index 8bbd88f8f..ab9b05729 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabIndGuia.java index 7764bee06..b3b9c73c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabJud.java index d6e478284..e24619f9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabPJ.java index 1d47c50c4..42537a7b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeTrabSemVinculo.java index cd212bd99..20700beb7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculo.java index 8b1f1d286..62c277d9d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoBaixa.java index d7f018810..0c64e3706 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoSst.java index 857a8fd7f..779b1f0fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoEstagiario.java index 07f7aa036..fb77ebbbf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoInterm.java index 4c92bd1f5..5a3316688 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoMV.java index 153a8f760..0451c0887 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoRRA.java index 50d667a7d..0296c6e90 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoSimples.java index fb7563c16..ae7130da8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TItensRemunRpps.java index 3bb505b4c..44ed19f2f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TLocalTrabGeral.java index 7dad22bd6..ade1b793e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNascimento.java index 03c1f416c..ca177a6f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNovaValidade.java index 643aab102..0c3621c76 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TProcJudTrab.java index f2bebd7d5..18e28a3ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TRemuneracao.java index 406ef429a..2ace9d8f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSexo.java index aab6b84e9..176370ccc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSim.java index dff476954..29109faea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSimNao.java index 35b6c64ec..a1782d60d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConv.java index 4c1e31c0b..7d8f82706 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConvFGTS.java index 6221449c8..2df5638ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSUf.java index 31312f236..04ae27602 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSucessaoVinc.java index 972d51905..c530a92cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TTreiCap.java index 7831eaa48..1d70a7de3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformType.java index c18ee5e0c..4fb7a8851 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link String } - * {@link Object } * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformsType.java index 2558b931f..81649ec2d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509DataType.java index 50a321658..4dad91deb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -81,11 +81,11 @@ public class X509DataType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Object } * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509IssuerSerialType.java index c442957c8..469459f11 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/package-info.java index d27b359db..f1f69ca8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/benprrp/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:45 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtBenPrRP/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/CanonicalizationMethodType.java index 509c45ffe..1b2264572 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DSAKeyValueType.java index 19d6461c1..0563030a9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DigestMethodType.java index b5b01a278..807bbf0f9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Object } * {@link Element } * {@link String } - * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ESocial.java index 928434592..3d8fdb87e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyInfoType.java index 12ce34764..9028151a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link String } + * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Element } - * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyValueType.java index cd163a616..06dabb1a7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link String } * {@link Object } + * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ManifestType.java index 3752a0a65..c06032808 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectFactory.java index 04d9923fb..116e94513 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.cat @@ -963,21 +963,21 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** @@ -989,6 +989,24 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1034,22 +1052,4 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectType.java index fc7341278..b5ef4c395 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Object } * {@link Element } * {@link String } - * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/PGPDataType.java index f3fe143cb..907fe306d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RSAKeyValueType.java index 34ab8bee4..e29760df3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ReferenceType.java index f7ca2d933..bc4dc8412 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RetrievalMethodType.java index 329f41d1c..dcd5420c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SPKIDataType.java index 72dad2d01..ff33f7412 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } - * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureMethodType.java index 8bbe38ee8..0baf50667 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -76,8 +76,8 @@ public class SignatureMethodType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertiesType.java index 6c03c5244..59701d92c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertyType.java index b79f7bfc3..5f16d50bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Object } * {@link Element } * {@link String } - * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureType.java index 0c205cd71..b03ee5934 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureValueType.java index 2965509d9..3d03439e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignedInfoType.java index 0792632ac..7661cb5ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAlvaraJudicial.java index f1f2903b5..c2156898d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAprend.java index 43459ddd9..97d29734b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TContato.java index f3441a212..478088b4c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReemb.java index 4988226b4..a97b4124d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReembTot.java index d24dce2fb..8a37c1c6d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoBrasil.java index 04b0b45a6..2e6ede2fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoExterior.java index 3a21cb9b4..247f4522e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/THorContratual.java index 6be52c249..3e1b7a38a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeBeneficio.java index 0a8028390..393707fd2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregador.java index 5c8e37154..458244cc6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorCnpj.java index 80f343245..f40a6655f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorExclusao.java index c5eb98adf..a94d641c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTab.java index bd402fdc5..07c7d61a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTabInicial.java index d162b8c47..054bc3b04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusao.java index 9ac1b36d9..ff47a84d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusaoProcTrab.java index 18a0141e4..e9fda2888 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolha.java index 66d5f5365..6d478ce1a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensal.java index d2e8fbe8a..d4d9d2dfa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensalPF.java index 6638ebaf6..2a893e5a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaOpp.java index 0b3712b2b..bacb8aa10 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaSemRetificacao.java index 18eda4eae..f39b130c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoContrib.java index 660e31ff2..962a6e7e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoMensal.java index 8732b1c15..519f2b582 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoTrab.java index 455d48f38..e38105936 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrab.java index b52817f60..ce97bc394 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabAdmissao.java index cf8e3ab12..777baf50b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabIndGuia.java index 3a5720e1e..403e8a5ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabJud.java index 72f2c1331..30976f08b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabPJ.java index d776470fa..3b9f906b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeTrabSemVinculo.java index 895f9fd9f..115668e06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculo.java index a37cc8594..62158af4f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoBaixa.java index 91872678f..df0273514 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoSst.java index bb41eca56..b3dc0a697 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoEstagiario.java index cd9378c16..71e682fe2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoInterm.java index cc0478d59..0cbcdea22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoMV.java index 6836a5c18..3c9418df3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoRRA.java index 111ceaa40..84da2cf4d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoSimples.java index e9c7cd1ec..1635ac37a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TItensRemunRpps.java index 3ebc1ce65..acecf3cfb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TLocalTrabGeral.java index 8b2922b48..338e86786 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNascimento.java index e830624f3..aee3916e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNovaValidade.java index c050b019d..173c3b26c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TProcJudTrab.java index ac8270e65..2a992d107 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TRemuneracao.java index 82fad1006..fa9d88800 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSexo.java index 2f9b2a525..cd2e6c18f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSim.java index 9a75e2cdb..1b9fe3cf0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSimNao.java index 840551817..b04afd0a9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConv.java index 821b2d640..caa49b446 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConvFGTS.java index be3cad5b4..437e2402a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSUf.java index e51585522..06ba26346 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSucessaoVinc.java index 2d5b71386..9a4abd406 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TTreiCap.java index 820ccd84a..4d776e22d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformType.java index ef6eca4ff..ad84f5c03 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link String } * {@link Object } + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformsType.java index a5346bc70..f428896b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509DataType.java index 19b2d1733..ee0e0c646 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -81,12 +81,12 @@ public class X509DataType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509IssuerSerialType.java index 923ca722b..c608416d0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/package-info.java index 026d46dde..0e09659a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cat/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:01 PM BRT +// Generated on: 2024.08.02 at 09:09:48 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCAT/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/CanonicalizationMethodType.java index 2464f0f39..4dba7d051 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DSAKeyValueType.java index 83c2d9e01..61fb64274 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DigestMethodType.java index 3a2f82c90..f7f1cc1cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ESocial.java index b9bb9801d..679a0a424 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyInfoType.java index 2f0f98a7e..5eb45e67b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } - * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyValueType.java index 8a3057742..0f94e4daf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ManifestType.java index ff3adb8de..2e0e4d9ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectFactory.java index ce4c9f47c..e10c2058c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.cdbenalt @@ -931,93 +931,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectType.java index d3c3c6244..8ab7eb2d6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/PGPDataType.java index 58134a256..5226eeafd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RSAKeyValueType.java index 629682dc0..481df4fc3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ReferenceType.java index 9a4f2f0d4..771c3b812 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RetrievalMethodType.java index 7114645e7..639f7342b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SPKIDataType.java index 0bbe5df33..203989bb1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureMethodType.java index bcb263f7c..b67174de1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertiesType.java index 88d8f1b52..384a2a8b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertyType.java index 8d072355e..9abd3d7e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureType.java index 6d13b6375..6680068b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureValueType.java index b2fcbb934..ad93d19ae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignedInfoType.java index 8130e8ae2..ff34c5cdb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAlvaraJudicial.java index bf6ff1611..c1695217d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAprend.java index 608ded892..47d7949c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TContato.java index e2b9940fe..5ce81d472 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReemb.java index 19b63a63f..8196a9842 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReembTot.java index 80bd13523..d389c71d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoBrasil.java index ac3f0b453..6752e3c8e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoExterior.java index cc4be7d87..9f6041b13 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/THorContratual.java index 4ae62592e..046e76cbd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeBeneficio.java index 73c165711..c6a7a008e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregador.java index 939dee13c..2d0f8619c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorCnpj.java index 2dc125c3e..8ee6517c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorExclusao.java index 47ba7630e..9d89a35f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTab.java index fd7bbfc8d..634bd341b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTabInicial.java index 7a99409e1..19edb2d92 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusao.java index 5e345e4b0..4b729b437 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusaoProcTrab.java index c1a6d9b7a..42a9a75b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolha.java index fc29283d6..8615c549a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensal.java index e4ea1c026..f04a300f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensalPF.java index 98b84005e..095ae15c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaOpp.java index 14c8fe01d..97dc06e01 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaSemRetificacao.java index 08da5e282..83dec5039 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoContrib.java index 928a745b3..92dfe9725 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoMensal.java index 82148360f..a985f521c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoTrab.java index c059bd431..d24284c7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrab.java index 655d30f7d..dfd0effb2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabAdmissao.java index 708a20adf..ba9921702 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabIndGuia.java index 4a055672b..915d52abe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabJud.java index c184bbf6c..2e8f0b3ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabPJ.java index 790152b30..16a01dbc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeTrabSemVinculo.java index 2f088ab19..bc4c05e4a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculo.java index 2a58c291b..d72646cb7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoBaixa.java index cdf4f1051..dfb082808 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoSst.java index e4de4e0f0..fde76a50f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoEstagiario.java index 9277987d3..bc6339938 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoInterm.java index c7bad4783..e8d4d6d30 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoMV.java index b7d5a2ffa..90aea84af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoRRA.java index 337a56705..23554627d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoSimples.java index e28f61cda..fcc7c63f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TItensRemunRpps.java index 3cb1b5d6f..ecf91a5ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TLocalTrabGeral.java index 3667e1fc8..137c54338 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNascimento.java index 8078d653f..4e4401972 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNovaValidade.java index d29e5b3df..cca90570c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TProcJudTrab.java index e546e6333..221c87fce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TRemuneracao.java index e0640e693..65349bac4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSexo.java index 6873b961c..f9b0d7b64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSim.java index 447cdd247..cf4452d71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSimNao.java index 10aecc648..10412cda1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConv.java index 91b1b2868..32f2eaf9d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConvFGTS.java index 51ab297a2..57db26697 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSUf.java index bd8b446ce..66e9f6942 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSucessaoVinc.java index b4cef8f77..c1892eb4c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TTreiCap.java index 152a36b96..9d4deab31 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformType.java index 9241fcdd4..d30cd6e5c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformsType.java index 3629cdf7d..94fa5ea0e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509DataType.java index 09cbb1ee2..58c52a0ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -82,10 +82,10 @@ public class X509DataType { * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link Element } - * {@link Object } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509IssuerSerialType.java index e97f5e20c..c509bfc94 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/package-info.java index 5da65bf18..a254f18a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenalt/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:09:51 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCdBenAlt/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/CanonicalizationMethodType.java index 087e74afc..7b4e44093 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DSAKeyValueType.java index 9784568eb..49bc46033 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DigestMethodType.java index c5d60bd29..31f9bf7bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ESocial.java index 17ba3e191..f1fa2dac9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyInfoType.java index 250ca8d13..b32edd87d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyValueType.java index 737fcd89b..f48d3f67b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ManifestType.java index 6216be589..4f54a58c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectFactory.java index 2aca6fcc1..018526166 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.cdbenefalt @@ -939,93 +939,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectType.java index 38eadbf3d..2162fc753 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/PGPDataType.java index 92b192c03..dda9c10da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RSAKeyValueType.java index 9085a51e5..293701ef3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ReferenceType.java index a33067d7b..fa503fbfa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RetrievalMethodType.java index 6c5103c89..53e70547a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SPKIDataType.java index f0db5bc8d..0b1bd00ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureMethodType.java index d12c6c6ff..1873ac20b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertiesType.java index a2d336d9c..33648da82 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertyType.java index feafae11c..50fe65155 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureType.java index aaafbc191..cf12230ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureValueType.java index 5057b86c2..ffebe4d43 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignedInfoType.java index fb99063af..9248eeabe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAlvaraJudicial.java index f5ee8726b..85d7b5226 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAprend.java index 875c10c10..efe391a63 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TContato.java index 7d2cee88d..898f02d91 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReemb.java index d896adfc7..e483adff1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReembTot.java index 48fc5a87a..078f5c141 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoBrasil.java index 6a39d822a..b4b1b57b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoExterior.java index d2c40fd67..3135655da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/THorContratual.java index d76082161..5d5a1379a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeBeneficio.java index f1fc58d4e..ddde0373f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregador.java index d0b2c6643..2058bbefc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorCnpj.java index d9f12a112..23994e7de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorExclusao.java index 22af3607f..4749c3f5a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTab.java index 97d6f13a1..01daccaba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTabInicial.java index 09f471778..7cfc84531 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusao.java index f02912c99..44cc72c1a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusaoProcTrab.java index 51f68551f..996e39b77 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolha.java index 540275f96..37aaab1f7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensal.java index 26b10aa4d..4a101b99a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensalPF.java index 858229c5c..c86d0f5ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaOpp.java index 436a2aadc..c91eb7bc6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaSemRetificacao.java index d0f0b4410..e51b50940 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoContrib.java index e082b8ee2..e30034e3f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoMensal.java index 248352f21..40b58a07e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoTrab.java index 86abdf509..80c34cac1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrab.java index 9e1c3830e..54daf7984 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabAdmissao.java index cec24a639..d97166140 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabIndGuia.java index e97ecca95..c6c35e54e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabJud.java index a58cad810..3286d43f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabPJ.java index 1c358035f..90baf46bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeTrabSemVinculo.java index f166e9b08..f69e65d52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculo.java index f231e8134..602ee2d66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoBaixa.java index 7dae8decd..6336dc274 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoSst.java index 153d81110..0a579b37c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoEstagiario.java index 8a8667cba..91dd30626 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoInterm.java index 6795f2a23..8e45a52dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoMV.java index 4a58fc035..3f0d9c181 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoRRA.java index f5ffeaf99..310b45f0b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoSimples.java index 015cf2511..5f04a320e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TItensRemunRpps.java index 6588cf6ad..adc8b7a81 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TLocalTrabGeral.java index 618cbbd3d..33d53c33e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNascimento.java index 026206140..6f2039e07 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNovaValidade.java index af1db784b..06064eb3e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TProcJudTrab.java index 73700cd27..d20d0d10a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TRemuneracao.java index 12be53d0f..098c29922 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSexo.java index 2db6e4982..078b8590b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSim.java index 10a89ac2a..686b5223d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSimNao.java index cb374dfcc..a3548edb9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConv.java index b8b8e6388..c6e34098b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConvFGTS.java index 76c555b08..4cba4d3dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSUf.java index 5fcb82abd..3f92141cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSucessaoVinc.java index 09f0dadb4..b7e73c31e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TTreiCap.java index a2d08f4ff..6712e818e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformType.java index ca4aa5797..60f7575ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformsType.java index d391ab07e..9821637e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509DataType.java index 66cd3dd99..a5d6d9247 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509IssuerSerialType.java index 7100715a3..7f98e898a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/package-info.java index 4b8b955b6..d2309ed0d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefalt/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:55 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCdBenefAlt/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/CanonicalizationMethodType.java index f731422a8..ca3a2eeb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DSAKeyValueType.java index 38c78d3ed..ed615dd3d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DigestMethodType.java index a5a47579d..a26e6d68e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ESocial.java index 1fd02244b..a18fc22e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyInfoType.java index fb42b0ef3..9a5797ede 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -60,12 +60,12 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @@ -95,15 +95,15 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyValueType.java index abd2cb03c..b6424d39d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ManifestType.java index deea32b41..67681b2a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectFactory.java index 49bb1a522..f42cead2c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.cdbenefin @@ -930,6 +930,15 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -975,6 +984,15 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -1002,22 +1020,4 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectType.java index f4fbfa435..ba80779e3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/PGPDataType.java index ca41085f3..800b0d88f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RSAKeyValueType.java index a2f86ca88..94c729c94 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ReferenceType.java index 774aa2547..38c68cde9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RetrievalMethodType.java index 8e2ebe9fb..4b07ed696 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SPKIDataType.java index 44c6b89ee..03a3b97aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureMethodType.java index 345fe8637..76c57d4d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertiesType.java index cbc5ae103..568c01099 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertyType.java index 94597e27f..6f48d07cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureType.java index c90996c91..9322417c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureValueType.java index 7ac58d4c8..d7bc95c22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignedInfoType.java index 5b29028cb..f3594536f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAlvaraJudicial.java index 5f38350ec..28aaafe49 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAprend.java index 8696e5fdf..aeedac158 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TContato.java index a5bfc3388..a2c05d45f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReemb.java index 8f261e496..cee69d4dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReembTot.java index 00c39af0b..389164321 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoBrasil.java index 188a157f9..f7cd82695 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoExterior.java index e01dbd671..05576d4e3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/THorContratual.java index 62fd25e45..3d3c1a19c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeBeneficio.java index f4d2da021..08f174617 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregador.java index fa14a3b28..2e0bfb4f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorCnpj.java index 9d1f9e774..7c2709306 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorExclusao.java index 297d4fc00..b726f6b66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTab.java index e2a60778d..443383c6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTabInicial.java index 3d33c2219..64d866644 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusao.java index 1efd99189..3c579ce54 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusaoProcTrab.java index 05a28b0ab..bc5eea8dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolha.java index 6353728d8..947bdc9b5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensal.java index 3e380d4aa..a4527cb06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensalPF.java index 4981276d0..1c82b4640 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaOpp.java index 21dacfc73..ee66ded8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaSemRetificacao.java index 64bc35f28..d144572cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoContrib.java index db88f0f3d..beace5cd8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoMensal.java index af34c8b0c..e7060c11e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoTrab.java index 6d717bdfd..98fab76f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrab.java index 71c518ca4..6c7f74174 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabAdmissao.java index f2de26a05..2f8ead760 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabIndGuia.java index 15dfa5892..10103a00c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabJud.java index ceec74db0..671f9cf37 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabPJ.java index bfde8ffac..ee02b6907 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeTrabSemVinculo.java index 703430df4..da97bf3d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculo.java index 435ef4120..0124c039e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoBaixa.java index 8744f9b01..5bc024398 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoSst.java index ca4c9ac16..73c6e0899 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoEstagiario.java index 9c1c24a48..4425915fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoInterm.java index 799232e85..c5a9456a1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoMV.java index cc578e7e5..16e3df386 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoRRA.java index 95a455e92..a9cb2461c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoSimples.java index ac64c4acd..312b7df2b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TItensRemunRpps.java index 9140d86f0..813638897 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TLocalTrabGeral.java index f348cef38..4d371ad6f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNascimento.java index e70270017..27bfe63c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNovaValidade.java index b9a40ebcb..47f483784 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TProcJudTrab.java index f5ffccae5..eebcb60b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TRemuneracao.java index 72673b5a4..41e415b9b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSexo.java index 75cae2fac..52c3603af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSim.java index e4c8cc1e9..8b97f48cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSimNao.java index ec42346dd..c673d84f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConv.java index af483b479..631e92cbf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConvFGTS.java index c3d09802d..f46784c1d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSUf.java index 108f258a8..4aeb84f38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSucessaoVinc.java index 7d68558fb..de142c125 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TTreiCap.java index c2f2ad56b..9b79dfeec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformType.java index f129e3aed..cbcd39858 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformsType.java index d03d6e842..cf5496be3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509DataType.java index 82bc19c2f..46d2760d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509IssuerSerialType.java index 78185ac6e..1f4e9df82 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/package-info.java index a1077b2a1..6afc3047e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenefin/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:04 PM BRT +// Generated on: 2024.08.02 at 09:09:58 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCdBenefIn/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/CanonicalizationMethodType.java index 4b366b698..76e4dd991 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DSAKeyValueType.java index 6c5a24adb..f702864ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DigestMethodType.java index 42a48c0ba..2d34a1e84 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ESocial.java index ba27982b9..ff857edc5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyInfoType.java index 424645e80..b33b63c61 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyValueType.java index b5ea87e2b..f22f8f65a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ManifestType.java index 873e889af..443d139d3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectFactory.java index bb6402afc..9ad339141 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.cdbenin @@ -963,93 +963,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectType.java index 763567d1e..03d2a437f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/PGPDataType.java index 87df28b2d..5e5c75439 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RSAKeyValueType.java index 7c0242204..b307b73c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ReferenceType.java index 9cda26153..218cf31f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RetrievalMethodType.java index c917c9e9c..1f7ddbecd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SPKIDataType.java index 02fe1bd22..5f4561648 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureMethodType.java index aca879f57..2e0d6b9b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertiesType.java index f97becfb7..3217b75ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertyType.java index ed7d6df8c..1f71e5209 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureType.java index a8bc212b9..fdccc050e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureValueType.java index 3a824f118..850908b5c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignedInfoType.java index c5d5df881..4449e28a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAlvaraJudicial.java index 5d1c414e9..06bde7af6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAprend.java index 7f22c5522..06316ddb9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TContato.java index e99577c94..863a12709 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReemb.java index 873b7263d..66922c40e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReembTot.java index a8019f445..2deea0ce6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoBrasil.java index feec6e36b..f85bd7610 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoExterior.java index 1cf0bc5b3..d795f58e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/THorContratual.java index 4dfe16ff8..7004ff67d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeBeneficio.java index ad28dd85a..20fee139a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregador.java index 8f5c706f4..230e8373f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorCnpj.java index 5ba2e7bd6..ad809f84b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorExclusao.java index 6be409520..b10b8cb53 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTab.java index ab297de98..842d00cfa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTabInicial.java index aee377bd2..15e7637a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusao.java index c8b94b76c..2d080834b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusaoProcTrab.java index f6594ed2e..34bc13f6f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolha.java index 5709cac33..4a5b066ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensal.java index 97a45e39d..f40dddaf7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensalPF.java index 55eb733e9..4f4e7477e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaOpp.java index d97e429ff..c37ccd8a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaSemRetificacao.java index f1f1d7fe1..a3837f437 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoContrib.java index e0a422876..309958ea2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoMensal.java index 4ec0c1097..4b5bd4571 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoTrab.java index 9a25e823a..54580517c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrab.java index 77f911eb7..a6b50c033 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabAdmissao.java index e36431c56..e3f2d137e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabIndGuia.java index 8dd048e66..cc465d063 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabJud.java index 607f26e2e..b8e950d28 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabPJ.java index f13bae387..b4c9abd6f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeTrabSemVinculo.java index 6da3cca69..2a57e2ea9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculo.java index 1ef820928..7b797b0e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoBaixa.java index 751f9bdf3..5a9b8a919 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoSst.java index 6097f56b8..f3129c116 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoEstagiario.java index fda2f0cf1..27a6d8639 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoInterm.java index 3cd11d0ef..e89c940d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoMV.java index 4a9b2913d..60b179e84 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoRRA.java index 2f71d14e6..80446a37e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoSimples.java index 9536fc3c4..b6efbaccd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TItensRemunRpps.java index c9cf418d8..04d54a711 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TLocalTrabGeral.java index ac9e2a9d6..1a44bebba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNascimento.java index 1c0a6b446..e6dd293dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNovaValidade.java index baec6e5c5..8bfac1fb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TProcJudTrab.java index cc9ca051a..f89d8c8bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TRemuneracao.java index 95163410d..84c957b83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSexo.java index 1dfcbebec..25ebe4dc9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSim.java index c04fab28a..1929bc221 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSimNao.java index 25a7c9a4d..9e2de6229 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConv.java index 450f09764..a081631e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConvFGTS.java index 670f0c0fd..d317d4913 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSUf.java index 767330f80..a2bd36fce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSucessaoVinc.java index ed3763910..37198e3ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TTreiCap.java index be65b628e..dbfa69bd3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformType.java index 888bc922e..43b98cb92 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformsType.java index ba527b011..5094e3ad8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509DataType.java index 571126415..1d0d9ce75 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509IssuerSerialType.java index 490a65d45..245af4353 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/package-info.java index 90c152878..f4ab92af5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenin/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:00 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCdBenIn/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/CanonicalizationMethodType.java index 2a88b4fa3..cacb48dd9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DSAKeyValueType.java index 4ab5b9310..e465689e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DigestMethodType.java index a5978e162..516d74fc1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ESocial.java index cc41f5691..ed473902d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyInfoType.java index f3f2b8ad5..17c853793 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyValueType.java index 33f42ca9f..cf9a9f33c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ManifestType.java index 22d62c6e9..4174310c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectFactory.java index de8e38485..2112b397c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.cdbenterm @@ -907,30 +907,12 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -979,21 +961,39 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectType.java index dc9d1c787..e1db181d3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/PGPDataType.java index da0a4e8e1..5058730d6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RSAKeyValueType.java index da577144a..634a34c7e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ReferenceType.java index b87d5a378..b9c2b0e96 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RetrievalMethodType.java index 25330f78d..fd6c1b276 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SPKIDataType.java index 5e7514dc0..a0decb816 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureMethodType.java index d85d1c86f..d995a9069 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertiesType.java index 17159b7a2..cad4e3649 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertyType.java index 8d33e783f..0c8863f12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureType.java index f3d44ed56..1feb46434 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureValueType.java index 5a9668d3a..6183c9a4a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignedInfoType.java index 97d564144..54e091353 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAlvaraJudicial.java index 2d96283cc..fc3003307 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAprend.java index cab65c8a1..717784db0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TContato.java index c439f515e..484142dbf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReemb.java index dea6e3327..64a8ac019 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReembTot.java index e2424bc9b..14a423c53 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoBrasil.java index 6fed5dbb9..26a438adb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoExterior.java index dd43afdd9..17c7a0ffb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/THorContratual.java index 00f50070e..98be9d0c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeBeneficio.java index 0b0d30245..00608ac82 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregador.java index 2fcd66737..d3ba46f17 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorCnpj.java index 53e50ec56..e2152524f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorExclusao.java index bf153c0f4..36907f923 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTab.java index 766c2a83f..9f2be27a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTabInicial.java index 6afa196f9..d6efbf569 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusao.java index ba479a44d..8dd5083b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusaoProcTrab.java index 3a7bfe1bc..56798f0b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolha.java index 5df05598e..daea619ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensal.java index 42cda604f..6bcd8495e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensalPF.java index 05ef4cfba..6ad5d688d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaOpp.java index 5577e480c..84ed568d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaSemRetificacao.java index 1a117b8d5..49ae57cc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoContrib.java index 086048cce..3c7936e02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoMensal.java index b0c41addd..5b938fa9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoTrab.java index 6b045758a..621f993c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrab.java index bfa940c50..037f4ed5e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabAdmissao.java index 09cbefc6a..598203b6d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabIndGuia.java index dc6e7a87a..24a4ef7e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabJud.java index bb7cd7c21..9f8170c7e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabPJ.java index e030b4a19..fe345a0e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeTrabSemVinculo.java index 5079a7b10..2b220c0c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculo.java index b760ac288..d456af25c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoBaixa.java index 9fdab14a1..a1180b942 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoSst.java index 8e6f5426d..8af1fc0e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoEstagiario.java index 44db0ca5d..b62ddcb23 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoInterm.java index 54d00d73b..368c5fcd1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoMV.java index 7fd88e3c3..1712eddd1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoRRA.java index f35e4ebc6..e8def38b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoSimples.java index 016c8b4e6..ff96acd61 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TItensRemunRpps.java index f27fe6b6e..93cbaf2b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TLocalTrabGeral.java index d1a5288f7..7b5509a73 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNascimento.java index 2c1291205..dbe6f33ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNovaValidade.java index 01466229b..d3aa0dac6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TProcJudTrab.java index 288867407..8e91a1156 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TRemuneracao.java index be1a6bcca..5cc06deca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSexo.java index 8e68d71f2..0a85882f7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSim.java index 9005f56b9..161f6f6b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSimNao.java index 49076b486..f1718f3b2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConv.java index a85dc1f44..9962e388b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConvFGTS.java index fcf2da9de..885c51e30 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSUf.java index 781296e78..42ddf7fe9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSucessaoVinc.java index 0238043df..84a447cd7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TTreiCap.java index 5f5326fdc..c5c3e3f6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformType.java index 572fd5487..2fa2c7b42 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformsType.java index 89d06c96d..ab7628673 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509DataType.java index 44332ee59..4bdd57694 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509IssuerSerialType.java index 44067a73f..4f6a9d724 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/package-info.java index fded8fbdc..a4ca07d57 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cdbenterm/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:03 PM BRT +// Generated on: 2024.08.02 at 09:10:03 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCdBenTerm/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/CanonicalizationMethodType.java index 9b8b8ee89..2bc54f267 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DSAKeyValueType.java index 361acafa5..a6fe9e07b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DigestMethodType.java index 6e4a6a068..3e940fa44 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ESocial.java index d67e2e43f..861d93b08 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyInfoType.java index 9fe624603..c5412a126 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyValueType.java index 8c86a5645..be59056d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ManifestType.java index 7ab4499c5..28daf3003 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectFactory.java index 2271f563c..c413b0794 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -61,11 +61,11 @@ public class ObjectFactory { private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.cessao @@ -968,21 +968,21 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -995,21 +995,21 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectType.java index e6053bd57..fbe415f18 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/PGPDataType.java index 462719e82..bff706010 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RSAKeyValueType.java index 62619c815..d64d6983f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ReferenceType.java index 6363882ac..709ef824e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RetrievalMethodType.java index 60f86ab93..111a0310c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SPKIDataType.java index f2374b34f..e153749a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureMethodType.java index d1bd731b1..801e89d3d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertiesType.java index 37e93e7f0..9847602f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertyType.java index 8b882fd8e..5ae53ef00 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureType.java index ca224c76e..661c289c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureValueType.java index 0a115a2a2..7c868c67b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignedInfoType.java index ef4d7b8ec..c70b36054 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAlvaraJudicial.java index c82a5a897..ec457dc85 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAprend.java index a42bbb7d2..fe491f9e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TContato.java index fb99246e7..9bdcc7157 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReemb.java index c1acf0d8c..a3af4b0d3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReembTot.java index 2935c2559..11aa17eb8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoBrasil.java index d65e4e887..84ab2aa66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoExterior.java index 11156c522..36322d467 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/THorContratual.java index ce09394f8..da8d3be9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeBeneficio.java index d74c7d729..bc996a52d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregador.java index 46b70713e..b5f1ee962 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorCnpj.java index 4a9351bde..4138411c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorExclusao.java index 5d219cff1..8c65451ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTab.java index 803ae24af..ad75c57a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTabInicial.java index 339ebb16d..e595f7c71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusao.java index dde088e44..a87ed4175 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusaoProcTrab.java index 2efd4e7f7..cec9affdc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolha.java index ed60f71c8..10b91d67f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensal.java index 50c4e0f5b..33ee620a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensalPF.java index cf4ad7285..335561c5e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaOpp.java index 88843fb12..1e3b290fd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaSemRetificacao.java index e873824e2..d489944f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoContrib.java index b08a10cb3..badb18b71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoMensal.java index b475d4689..44a886073 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoTrab.java index 2dcf3f210..561cdf6d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrab.java index 271ffa62d..01fcb025a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabAdmissao.java index cccf3538e..e66a64d2f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabIndGuia.java index ef453bb81..5d6cd64f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabJud.java index 5cf259ad1..9990016a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabPJ.java index 25535c63c..d868e639c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeTrabSemVinculo.java index cc0d8eef0..80f30a58c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculo.java index 614afdf00..b19970f44 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoBaixa.java index f775943d4..31dc80849 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoSst.java index e7c24408e..72487273b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoEstagiario.java index 6ada3caab..6f3c69733 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoInterm.java index f235b5cdf..eaa75d506 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoMV.java index 3ffd3782b..4eb37c227 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoRRA.java index f4d0e6b47..4b9c3706b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoSimples.java index 85440fa70..c8bf6b3ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TItensRemunRpps.java index b12bf05fd..25d0bbde7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TLocalTrabGeral.java index ba323fd0a..18b1e6b8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNascimento.java index 66639d026..e57e9db0d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNovaValidade.java index c95700ee1..e000bd878 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TProcJudTrab.java index b0b87744e..10da16865 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TRemuneracao.java index dcd3923d3..60d05074e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSexo.java index a9b60b017..ac1aba86e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSim.java index 1cb43b0e3..9ff7978e2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSimNao.java index 732488248..e0b08b99c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConv.java index f9c7acbbd..6cc40ef90 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConvFGTS.java index 0f862df9f..a4cafdb56 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSUf.java index 9713307bf..78a12d98a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSucessaoVinc.java index a9e13ec0b..23a9a0678 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TTreiCap.java index b18bdc29d..9da2029a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformType.java index 0e0878c0e..c4afa7bf6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformsType.java index 956b7d029..922ebfb2f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509DataType.java index d68652abd..0cc78f74c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @@ -53,10 +53,10 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509IssuerSerialType.java index 750e5b517..3522917cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/package-info.java index 172f9b2ad..4912721a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cessao/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:05 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCessao/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/CanonicalizationMethodType.java index db355315a..10389493d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DSAKeyValueType.java index d58f23cd4..2d142c3f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DigestMethodType.java index ddfed848c..5ae6c2415 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ESocial.java index f9a5a0e8e..67790ca65 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyInfoType.java index 160b6d138..ce60cdd4c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyValueType.java index 80d233cb5..d5d439ca9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ManifestType.java index fac5bdffd..efb8d211f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectFactory.java index bdf2d9a39..aedea8533 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectType.java index 1da3045a7..5969970ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/PGPDataType.java index 8a8da7457..70deaf697 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RSAKeyValueType.java index 7077b121d..dfa67e07f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ReferenceType.java index 2c4f01fde..3496f5e61 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RetrievalMethodType.java index ec41f84be..043f1dce0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SPKIDataType.java index 1d1db801d..bdebb7253 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureMethodType.java index 98e3432e9..9431e50ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertiesType.java index 70bfd4b4b..c07d75825 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertyType.java index d8720d3b5..25722f4b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureType.java index d123f224e..6c4b907ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureValueType.java index bf59571e7..f2cbb3d2d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignedInfoType.java index 7cffce3f8..98d4bad6e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAlvaraJudicial.java index 5fb310d87..4bd187f27 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAprend.java index 3715247d1..3a3dbbe9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TContato.java index 42afc41d1..155278b3c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReemb.java index f46a49b85..20a23d35c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReembTot.java index f920a69b1..763c243f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoBrasil.java index 71d92207b..6de81c84a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoExterior.java index e52c50505..fbf46c409 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/THorContratual.java index 369c60e64..eaf1cceb7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeBeneficio.java index 646240e72..6333487a7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregador.java index e49da8cf0..75357cb12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorCnpj.java index 022dd9586..0c867cc0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorExclusao.java index d2de62d50..f5b4f505b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTab.java index 373abdce7..d323a19b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTabInicial.java index 383385b3e..3421fcd31 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusao.java index 2231004f1..ac2d5dadb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusaoProcTrab.java index 2356591e9..ea4abeee4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolha.java index 629211b74..8fd40aff8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensal.java index 4c23606af..8167cf92a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensalPF.java index b9b52f37c..d47a4bd9a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaOpp.java index 9c04170a7..5dac0a0ec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaSemRetificacao.java index 25fb8c203..c8e560456 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoContrib.java index 7ffedb750..d9e64dde9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoMensal.java index cca657cbe..275b43b6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoTrab.java index 2584df0aa..641f5de53 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrab.java index 4dd4f7ebc..927c4d471 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabAdmissao.java index ae17957f9..12a672856 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabIndGuia.java index 6470c3703..0db84f673 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabJud.java index a22aaa914..7a7dbfd2b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabPJ.java index e1a2fb48c..c7f6fae12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeTrabSemVinculo.java index 37b0bb9ec..2f2a48efb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculo.java index 31c4635d1..5f0eec732 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoBaixa.java index 6dca053fc..b684371ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoSst.java index bff3831d4..30d150671 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoEstagiario.java index 4d633db3c..34d5489dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoInterm.java index 92d6fd964..8a688cced 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoMV.java index f2ae482ec..5fc8531b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoRRA.java index b36eabf14..1838208e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoSimples.java index 50d8e25e6..2eb752fbf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TItensRemunRpps.java index a1d7bc42f..238b6470b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TLocalTrabGeral.java index f3f22388a..1496f10a9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNascimento.java index 7427947ba..a79033b25 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNovaValidade.java index a320908b2..eb23dece0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TProcJudTrab.java index 7702992b5..a5d06145e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TRemuneracao.java index 4c23f8c05..dfc92b02b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSexo.java index 175277234..6218b6645 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSim.java index 2254f50d2..e7104928a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSimNao.java index 4a7296e9c..1936032b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConv.java index 0de02a145..b9f3730bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConvFGTS.java index c02dd98bb..023baafc0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSUf.java index f6d808df9..442882931 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSucessaoVinc.java index ebce5db14..ef615eea4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TTreiCap.java index 5532eda15..48d0e6c4c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformType.java index e1569fc6e..57e328c9d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformsType.java index 167eaaf43..2930a0aa6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509DataType.java index a64165d26..af7b27ba6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509IssuerSerialType.java index 0a3828fd4..177786d82 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/package-info.java index 026e50824..d27b32ae6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/comprod/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:05 PM BRT +// Generated on: 2024.08.02 at 09:10:08 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtComProd/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/CanonicalizationMethodType.java index a019860b3..10a42628c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DSAKeyValueType.java index f9bc6eb98..258ef3ad9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DigestMethodType.java index c17db9321..4908491e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ESocial.java index 8faeef46c..5e0d68025 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -433,6 +433,7 @@ * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> @@ -999,6 +1000,7 @@ public void setSignature(SignatureType value) { * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> @@ -1798,6 +1800,7 @@ public void setObs(String value) { * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> @@ -2590,6 +2593,7 @@ public void setVrCR(BigDecimal value) { * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyInfoType.java index 72813ee15..6ee1ca3f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyValueType.java index 6627f0258..141088bbe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Object } - * {@link String } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ManifestType.java index b1887bec3..873c13d3b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectFactory.java index f73046fe7..205a417ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.contproc @@ -1042,33 +1042,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1114,6 +1087,15 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * @@ -1124,12 +1106,30 @@ public JAXBElement createTransformTypeXPath(String value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectType.java index 18ffc4d56..fb045795b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/PGPDataType.java index c330118a6..7f37fe82e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,9 +88,9 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RSAKeyValueType.java index 339913719..4298e6328 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ReferenceType.java index 763e005aa..7a006fe04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RetrievalMethodType.java index d29c1e04c..8b8960e34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SPKIDataType.java index 2402ab575..0c2eec31e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureMethodType.java index a3edf1f70..891072107 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertiesType.java index 012880e29..ad9117648 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertyType.java index b09b3dff7..f4e2a5330 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureType.java index aef446f84..8540d5f5f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureValueType.java index ba4656cac..bda10c22c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignedInfoType.java index 4150aee3d..ec1c44186 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAlvaraJudicial.java index 9d6a4b983..1ce9dd675 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAprend.java index c8f532cb2..ca0a0a881 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TContato.java index 16e952db1..f525cce8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReemb.java index 349c1d7bf..801680f5f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReembTot.java index 2528743d2..8ed698d45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoBrasil.java index 95ccb1770..a2406aa62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoExterior.java index fa6ea3fe5..d98a92ff3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/THorContratual.java index 5d9b51fb2..2a6ee0fb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeBeneficio.java index a2feec799..0de13276d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregador.java index 5f13345d9..315bf4f2d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorCnpj.java index c6ef9ba13..0a5ff6441 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorExclusao.java index fe5c3177b..1b0a80ea5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTab.java index dcf7600ff..b3f652770 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTabInicial.java index 30ffa7632..6e777bcbe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusao.java index c68b88906..3f75a1276 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusaoProcTrab.java index 575a788cc..9cfa44c0e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolha.java index 402fa3690..462db035e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensal.java index 62dd6cdb5..bac8aeed0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensalPF.java index c70a6533d..c0e008549 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaOpp.java index 2f95fedeb..364250a0e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaSemRetificacao.java index 968226566..45966747d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoContrib.java index 307867ed3..1b2ccdeb5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoMensal.java index 57495d27f..0148fa1a7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoTrab.java index f50c97bd4..b86e60293 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrab.java index 2d71585b3..516443123 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabAdmissao.java index d719ea849..3f59bb699 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabIndGuia.java index 2174105bc..619838251 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabJud.java index 1a3c21bfb..5d98b87aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabPJ.java index 8576723b7..e1ea7939a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeTrabSemVinculo.java index 9d1d01263..20b3a9519 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculo.java index 52ca14418..600c1e20f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoBaixa.java index ef5af75bd..37d8bc40a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoSst.java index 1bfad25fc..8299a56de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoEstagiario.java index 434535f09..981186148 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoInterm.java index f61a9d7c4..6988d258f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoMV.java index 630205ec9..04d0237ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoRRA.java index bda88a35f..3202614d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoSimples.java index 4bceed323..ad3300ebd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TItensRemunRpps.java index 328cba312..8f984a6aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TLocalTrabGeral.java index f83375eed..5c02a11d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNascimento.java index 0d394c011..a3f15f8a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNovaValidade.java index 7337bc906..7f9df7241 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TProcJudTrab.java index a0d35ce82..eb9c7319e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TRemuneracao.java index cc736e4ed..486e0befb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSexo.java index 5505a9fa1..c8b271d52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSim.java index bf5b92ce5..064e3ef64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSimNao.java index 795436a40..0e201a58f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConv.java index 9dfc92b54..a2bd662c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConvFGTS.java index 875feff17..43b032a9a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSUf.java index be0595aa6..4c9129d4e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSucessaoVinc.java index 832b14011..dd662630f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TTreiCap.java index b5e14eb1e..34825e81b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformType.java index b6e02eddc..a030ab150 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -75,9 +75,9 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformsType.java index 7aab2adb1..429e3acc8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509DataType.java index 052fa9ee4..7c4193f57 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509IssuerSerialType.java index 65b771d48..03333205d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/package-info.java index 40422e88e..5481fa4d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contproc/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:09 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtContProc/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/CanonicalizationMethodType.java index 87c00233f..1ddcaec6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DSAKeyValueType.java index a67a87f12..072d6ae85 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DigestMethodType.java index 773416d73..20bdb35e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ESocial.java index e8375048d..1f9f16657 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyInfoType.java index 7b706412f..3eeb1f36f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyValueType.java index 0c69f4cff..f431c91d6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ManifestType.java index 683992c94..3a23627e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectFactory.java index 262264332..0b9f26d47 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectType.java index 94f0739de..407bab457 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/PGPDataType.java index 6d59d1ca4..7be1e50a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RSAKeyValueType.java index 64a96ad27..be3c40cac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ReferenceType.java index 23b6af2a1..89427c454 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RetrievalMethodType.java index 6aba209f1..1aeee530c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SPKIDataType.java index d173367c4..8278c8bdd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureMethodType.java index d98ae4d48..1ee5b19f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertiesType.java index d244903c4..d01e317dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertyType.java index 4669fd811..878b9b141 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureType.java index f82c0afb8..7e338c6f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureValueType.java index 0b52f421d..6fae624f9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignedInfoType.java index cd0345874..ac74a9b15 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAlvaraJudicial.java index d98f506a4..b94112691 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAprend.java index e216aa85e..bc0bb51c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TContato.java index b909ca7eb..58e071c17 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReemb.java index 060198210..b13d88762 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReembTot.java index d8e2bb4c5..8ee248157 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoBrasil.java index 4ed0bf23b..20ad1b552 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoExterior.java index a256af7bb..b333e7465 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/THorContratual.java index 0618c927a..5765a4709 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeBeneficio.java index c04dd4874..3a661348c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregador.java index 3ec1d8310..060abaa13 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorCnpj.java index 3cc755bc5..0cf7545e9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorExclusao.java index 581008501..33adbc400 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTab.java index 1bcc5ee2c..1c41940ae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTabInicial.java index 8b0c0f1c5..68e0bd832 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusao.java index 68ce9e652..1a8d060ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusaoProcTrab.java index 47277249e..d046aed40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolha.java index 24f5dd58b..db8e541bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensal.java index 2a5fe7c44..0783b117a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensalPF.java index ede8d9091..5cbc5a003 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaOpp.java index 046dc8a8a..3b9f78768 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaSemRetificacao.java index 2f6cc2f89..e3a4800ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoContrib.java index 9ad43ed18..afb0fa1db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoMensal.java index 71d8cd6f8..b8eced461 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoTrab.java index abe374f2a..024f772e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrab.java index 7a0bb0b24..f0d8a837e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabAdmissao.java index 3f3d693ac..89e1a0042 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabIndGuia.java index df338de86..ffa3b8378 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabJud.java index 94a47054c..6315fe457 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabPJ.java index 66e25595a..ef8839978 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeTrabSemVinculo.java index d614592af..d95301f5f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculo.java index fac921679..291d9129e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoBaixa.java index 083a682d8..9f18de0e2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoSst.java index a2d0afb27..065229900 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoEstagiario.java index da2efb54c..9bd1933bf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoInterm.java index 48d2cb4c5..609405f52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoMV.java index 4518eb028..b3881db04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoRRA.java index 45162ad21..fcb17df63 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoSimples.java index c49611704..1a57a0d45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TItensRemunRpps.java index 6e8bff529..05018161f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TLocalTrabGeral.java index 2bc86923e..b4a511ff6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNascimento.java index 8ed326fcf..28c614b86 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNovaValidade.java index 9950215b3..9fc8244ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TProcJudTrab.java index a71fb6f88..35b3b334b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TRemuneracao.java index 25cb41178..43c00e1e3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSexo.java index 4f40af4d0..f278439df 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSim.java index 177f7dcbb..ab2dcbe3b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSimNao.java index 2e3701644..608b28973 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConv.java index 96c6d7614..dc94252b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConvFGTS.java index 1ed7f6fcd..419cbcd8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSUf.java index f6ef5f0b4..0fadeafb3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSucessaoVinc.java index 4b6aebdfe..61bfc4171 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TTreiCap.java index c09808122..b8e27613c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformType.java index f6dda45b6..efe3f7c68 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformsType.java index 041695eb6..8ba1d31ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509DataType.java index 671a07c14..caa5c5282 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509IssuerSerialType.java index 0c95873f3..fe18db0aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/package-info.java index ae0ddf8e8..efd4d4c4d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/contratavnp/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:06 PM BRT +// Generated on: 2024.08.02 at 09:10:11 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtContratAvNP/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/CanonicalizationMethodType.java index 9e4de1048..ab917c412 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DSAKeyValueType.java index b0a8aa3f2..f2895df06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DigestMethodType.java index 4436a9b43..8201053c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -71,8 +71,8 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ESocial.java index 9445ef8fe..ffa56a236 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyInfoType.java index 28b50500c..8a0a50f38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyValueType.java index 0dff56d54..932657aee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Object } - * {@link String } * {@link Element } + * {@link String } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ManifestType.java index af3fb8594..46db6adc2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectFactory.java index 5cc0a9344..e46fa7ff4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -56,14 +56,14 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); @@ -1066,33 +1066,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1138,6 +1111,33 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectType.java index 347a982ba..c61b303a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -83,8 +83,8 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/PGPDataType.java index f511e1501..78dbf8f58 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RSAKeyValueType.java index e1abc9ede..8d7a0ab61 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ReferenceType.java index 5b6928017..e516e5041 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RetrievalMethodType.java index 976d22d64..19bf4991d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SPKIDataType.java index d26462aae..611634247 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureMethodType.java index 2fa944593..a9f692160 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} + * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertiesType.java index 6f2c4fad0..5aa3fb87e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertyType.java index 78c08a610..eb6c5cff5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -80,8 +80,8 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureType.java index 78bfce479..adff08587 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureValueType.java index 8adaa7df8..503c311f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignedInfoType.java index 453af805b..66b21c749 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAlvaraJudicial.java index 49403c314..ab6e410b8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAprend.java index 11cf4ba01..73e111fcf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TContato.java index 611eccee3..a224426da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReemb.java index 6845967e4..78871199b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReembTot.java index a8a9e9683..ef636d77e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoBrasil.java index ea5cfb942..a18a8baa8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoExterior.java index 789707be9..0758b5312 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/THorContratual.java index 14bdff1c5..47d7bed38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeBeneficio.java index 2071d58c4..c7653e2b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregador.java index 3d22864af..cce919566 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorCnpj.java index 8225e844b..f67315014 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorExclusao.java index 136ca6240..61bf82bee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTab.java index 42cefa943..e32be2db7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTabInicial.java index 2e9f3ae31..ad7e81ef0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusao.java index e4e6bc925..9a9941f73 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusaoProcTrab.java index 0f8b0a412..ccc15aa80 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolha.java index 3c1d61808..dcbd37716 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensal.java index 5e13237e0..b07d86ffa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensalPF.java index 353df15ca..41a18b27c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaOpp.java index 18d2b66a4..e53d0a786 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaSemRetificacao.java index a3d008807..d17578d5a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoContrib.java index 763ac1a75..0b875460a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoMensal.java index 2e5927ac8..b6387aefb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoTrab.java index 336ac7d6e..d67e8e5e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrab.java index d28aa4ff7..12d0f9f8e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabAdmissao.java index 4d821e7f8..909b3a3c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabIndGuia.java index d5ce557eb..1026ea098 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabJud.java index 354cd6e2b..2be9e012e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabPJ.java index 30f30e8a8..6473a745a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeTrabSemVinculo.java index 65177b207..f6679b6b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculo.java index f2c0c3080..f02812c45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoBaixa.java index 99617bc34..dcbae30a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoSst.java index 9b0281006..c927e987a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoEstagiario.java index fd0aef77d..db958bec4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoInterm.java index 46bae5713..abd3a3476 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoMV.java index 6cf907533..652cfb8cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoRRA.java index 95ffeb5ed..ef9c24275 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoSimples.java index dd78bf691..54aa15ffb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TItensRemunRpps.java index 16977b82e..c55730e75 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TLocalTrabGeral.java index 5846dfb10..17ee9008d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNascimento.java index 4a60c08d6..022a35317 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNovaValidade.java index 180b44ccd..890601c34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TProcJudTrab.java index 0ce30fc9f..a2afa3fca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TRemuneracao.java index 20615d782..1bf275fe8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSexo.java index 0c185047c..36b4cfd23 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSim.java index 0f5dc4884..5e7665c40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSimNao.java index 93d86561e..42a33d549 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConv.java index 0a36d33d2..49ab078a9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConvFGTS.java index 31e5640a3..ec6af7e4d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSUf.java index 6ef23bfb5..d82c8614c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSucessaoVinc.java index a1da4d76e..98892592b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TTreiCap.java index 829a9e6f8..cf244c3f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformType.java index 5a0a3524f..650e7f79f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link String } - * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } + * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformsType.java index 984e120ff..8a7ddc2e2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509DataType.java index 9066cc0ac..49628b459 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509IssuerSerialType.java index fcd9f7b2e..3dd4f20ae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/package-info.java index f69ce5a98..38529203e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/cs/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:02 PM BRT +// Generated on: 2024.08.02 at 09:10:13 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtCS/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/CanonicalizationMethodType.java index 4d45627a2..a30cd6f45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DSAKeyValueType.java index c3a10ab50..f117b1152 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DigestMethodType.java index 5b965253d..a3b489400 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ESocial.java index 5b54a0dfc..68fab01fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -162,6 +162,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * </element> @@ -471,6 +472,7 @@ public void setSignature(SignatureType value) { * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * </element> @@ -847,6 +849,7 @@ public void setId(String value) { * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * </element> @@ -1959,6 +1962,7 @@ public void setDtNascto(XMLGregorianCalendar value) { * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * </element> @@ -2185,6 +2189,7 @@ public void setProcCS(ESocial.EvtDeslig.InfoDeslig.VerbasResc.ProcCS value) { * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * </element> @@ -2391,6 +2396,7 @@ public void setInfoPerAnt(ESocial.EvtDeslig.InfoDeslig.VerbasResc.DmDev.InfoPerA * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * </element> @@ -2487,6 +2493,7 @@ public List get * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * </element> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyInfoType.java index 857d76c2a..6c48d1ec8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyValueType.java index f01e298ec..dc4c21028 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link Element } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ManifestType.java index aca93f29a..140bf0427 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectFactory.java index 663097144..04033615a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.deslig @@ -1034,24 +1034,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * @@ -1062,21 +1044,12 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -1124,4 +1097,31 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectType.java index a920509cd..97a85dfc6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/PGPDataType.java index 1c3a6a24d..bbb10da43 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RSAKeyValueType.java index e4163bab2..61a960127 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ReferenceType.java index 226a8d642..388b2e9d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RetrievalMethodType.java index b10810426..4bd8cc898 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SPKIDataType.java index 892a4640d..30e4dd808 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureMethodType.java index 804d917e9..687c082f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -76,8 +76,8 @@ public class SignatureMethodType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertiesType.java index 5b794e488..17e33c00d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertyType.java index 449428844..a31d5afc8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureType.java index 9a4cc7c4c..488bc98f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureValueType.java index f0350f5dd..4e6ad8d0a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignedInfoType.java index e0523e6ce..a1e4b2565 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAlvaraJudicial.java index 3ca5022f5..4a7b4439c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAprend.java index e1fdb5aea..edb3b52d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TContato.java index 69c4e224f..dc3abaf68 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReemb.java index 3e64dab18..1c2300088 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReembTot.java index dcacb7dfb..330663048 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoBrasil.java index 8b1853c3b..a50637f11 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoExterior.java index 00b7bd5db..3e9d8e3da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/THorContratual.java index 4e3a07314..971b73b06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeBeneficio.java index b558a1015..d176856a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregador.java index 2e7b7757a..7a85bd852 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorCnpj.java index 4d1fd1c76..814056d03 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorExclusao.java index 3d7e8fbf2..bf2399f00 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEstabLot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEstabLot.java index 1397a223d..80e4c0819 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEstabLot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEstabLot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTab.java index 23a6b12c5..0cf859391 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTabInicial.java index 7959ee10a..b39dd9777 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusao.java index ea371179f..9245c61eb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusaoProcTrab.java index a9bd61776..d39f98e78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolha.java index 73e920ea4..e3bd0cd56 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensal.java index 40c6fb6fd..c7afcdb03 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensalPF.java index 634f989e7..b938a4d3a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaOpp.java index 8d7f392ed..8507dfea6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaSemRetificacao.java index 569c61b14..d8112d4e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoContrib.java index 10e79400f..a466be422 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoMensal.java index 3bcfd75ac..ac1a293b8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoTrab.java index 2bc279483..0a4b2c37e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrab.java index b90248679..5feb28e36 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabAdmissao.java index f6f3dc719..52c0998b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabIndGuia.java index f44810c1c..c720cb217 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabJud.java index 4f91756c8..5ad69cfcf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabPJ.java index 1cf33477a..7eb90f5a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeTrabSemVinculo.java index 7f8b4b503..a0a678563 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculo.java index 82ddfbf77..82e9d691f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoBaixa.java index 5a928122d..2b9d2a30f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoSst.java index fd7d74188..b926718e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoEstagiario.java index a3a34b2ac..6912cd764 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoInterm.java index 2db22248d..12988c595 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoMV.java index 42e05cac1..5419cae43 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoRRA.java index 5273d81ca..188a76d83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoSimples.java index 85f7d1e25..2ae5fb6d7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TItensRemunRpps.java index 57af1e523..fed4bdd98 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TLocalTrabGeral.java index 7f4f8decd..3b4d69925 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNascimento.java index 60120441d..bfe825035 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNovaValidade.java index 1ecf7f6ce..d02941c91 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TProcJudTrab.java index 9c315a769..469e94c5d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TRemuneracao.java index 0d249bf83..3fba5edf6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSexo.java index 05aa729bc..7cd0144df 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSim.java index c8e8fa298..e0f70295c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSimNao.java index 36be4ad3b..b9cf9e500 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConv.java index e89b2e682..7bdb1e851 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConvFGTS.java index b93a653c7..539d74330 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSUf.java index d79c7d0c5..da90e92a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSucessaoVinc.java index deea94788..0a4ae97cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TTreiCap.java index 02cfc89bf..595256888 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformType.java index 7694b5cdb..99ab120db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -75,9 +75,9 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link String } * {@link Element } * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformsType.java index 9869ccc7f..94a8654bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509DataType.java index 3cb537c0a..34feb3976 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509IssuerSerialType.java index 80da8c6f7..2c31058a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/package-info.java index 592474a2f..dee94c275 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/deslig/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:15 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtDeslig/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/CanonicalizationMethodType.java index 05b8669a7..2a0b02fde 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DSAKeyValueType.java index 62b42e81f..bb1fd8a08 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DigestMethodType.java index 452e79f5d..68eb1d793 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ESocial.java index f5edfeb8e..104573bd0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyInfoType.java index 0279e25e4..f7eee0780 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyValueType.java index 6f8bb7cc0..1dc4304ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ManifestType.java index c791a46c5..aa9a08a62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectFactory.java index eb8fd49c2..97bfb0e55 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.exclusao @@ -923,93 +923,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectType.java index 470ca6df2..2a93da87a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/PGPDataType.java index 1efb23114..113e832d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RSAKeyValueType.java index 1461ba8a8..cc7722e86 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ReferenceType.java index 4f5e71095..cacdc55de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RetrievalMethodType.java index 4093bff96..af9382877 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SPKIDataType.java index f65d940d0..0a62384c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureMethodType.java index b93b9f3b0..aa0cc89a1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertiesType.java index 3dcd01948..a96475d24 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertyType.java index a5120a0c3..ccc7fc3d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureType.java index 8da8b49ba..1d2d17781 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureValueType.java index cbf8911df..6ac57b198 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignedInfoType.java index 5656b01bb..820e8c6c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAlvaraJudicial.java index a4eaf781f..731f8f17d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAprend.java index 5aa58b4d3..acfba4d46 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TContato.java index 169132d5d..3752055a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReemb.java index 9978bef24..4e2d7fbcd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReembTot.java index 63fe452fd..870b46002 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoBrasil.java index ea0228693..bace39747 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoExterior.java index fecbe1175..be5f62e76 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/THorContratual.java index 78ac1228b..e083ac765 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeBeneficio.java index 7bd5e2a76..688e1f4ae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregador.java index 46aa6f670..2f34a6c62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorCnpj.java index ff0909e34..941deb4ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorExclusao.java index b93064710..249b916a9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTab.java index 5e0c50ea2..5405b0df0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTabInicial.java index 5a3ccf83d..a8eb5cba7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusao.java index 7ccc91426..63d2b9948 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusaoProcTrab.java index 8ac960f14..4f8c91ff0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolha.java index 01cbdf3b5..5760af822 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensal.java index 545a96905..63145c5ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensalPF.java index 78b5b2c6f..1213cd25a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaOpp.java index d936f3a2b..6761454bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaSemRetificacao.java index 702f8e8f3..30996a4ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoContrib.java index d1aca670f..df77dc3ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoMensal.java index 7b15a3150..899a29c6c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoTrab.java index b15804859..25366eb54 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrab.java index 627230d57..074d16443 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabAdmissao.java index 73c6fa0c7..eaf0e8c94 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabIndGuia.java index ea3bdc792..7be34e83e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabJud.java index 4c8a110eb..198697ed7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabPJ.java index f58954da7..da8cb9455 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeTrabSemVinculo.java index 44c3930ce..e81d553ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculo.java index 3cddfe233..a3bab2bc3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoBaixa.java index c09301f89..380651f96 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoSst.java index 4c566b19f..52f65a5b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoEstagiario.java index 684c46220..bf6483056 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoInterm.java index ca32c05a6..485d0c2db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoMV.java index f50c4a239..909e7dda3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoRRA.java index 7b77d29ec..68bf460a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoSimples.java index 7614ee8a2..74651d352 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TItensRemunRpps.java index 723bce516..18cecea7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TLocalTrabGeral.java index 2f8f5f71a..e252ef137 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNascimento.java index addfc1565..a9062b04b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNovaValidade.java index a499803ac..b3b2b6881 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TProcJudTrab.java index 3df7f7af3..46c12f4a7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TRemuneracao.java index 969254889..8d4f8cab9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSexo.java index d36f99376..eb037243a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSim.java index cdd7c1ec5..86ad3de06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSimNao.java index bbe730617..73ccd01cb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConv.java index 1a1667718..8236d5933 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConvFGTS.java index c71eddc0e..506104b7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSUf.java index 83a0f8d29..c464cb708 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSucessaoVinc.java index 9a25b5521..54c46c0e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TTreiCap.java index e6583e888..5612d0ec5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformType.java index 2430c3644..54c5dc106 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformsType.java index 784402aec..310c3a580 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509DataType.java index 1bae10b2c..30e6de399 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509IssuerSerialType.java index 03121be60..39c73b75c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/package-info.java index effebe0b2..cf66d41b2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exclusao/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:17 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtExclusao/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/CanonicalizationMethodType.java index 44f74b000..38c2293b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DSAKeyValueType.java index 8f28fd828..240de30a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DigestMethodType.java index 54211037d..0e6ecbe93 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ESocial.java index 3f9458d7f..05e56c107 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyInfoType.java index c8984515b..2f3a42ff2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyValueType.java index adbfc8342..94659c128 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ManifestType.java index 174a30cf7..30e890553 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectFactory.java index 40f23fd13..224d102d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.excproctrab @@ -914,15 +914,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -941,6 +932,33 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -986,22 +1004,4 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectType.java index 3e025ed5d..40bee851b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/PGPDataType.java index 6da04b447..81a487ea5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RSAKeyValueType.java index 9b0e53d21..fb98796e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ReferenceType.java index af4a37bad..45431f5de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RetrievalMethodType.java index 215832d23..92a14a495 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SPKIDataType.java index c17f60ed0..17afe12d6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureMethodType.java index 0c070c526..ea13f61b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertiesType.java index 3e601c07e..91f23ff14 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertyType.java index e0ec1b4a5..9a0337574 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureType.java index acbb6ff35..d7c749482 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureValueType.java index 1d4bd4f3b..991e2e9a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignedInfoType.java index 34e2962ad..33fb8cc4a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAlvaraJudicial.java index 911278855..e7431c207 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAprend.java index bf0f4a1c8..0630ad536 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TContato.java index 07d08a1a2..e71f260ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReemb.java index 2ba6938ae..810c88c79 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReembTot.java index ebb340107..5936554f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoBrasil.java index 682507475..5952c290d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoExterior.java index 6cf4bff3d..3f138aabd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/THorContratual.java index 0664d1383..5b2ae7ea3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeBeneficio.java index d49066945..7b407fa9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregador.java index b10c38df5..3df4c4a1e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorCnpj.java index 15e6e9e4a..33b3e4747 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorExclusao.java index 90750372a..6bd06d56e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTab.java index ec15805ca..017876a23 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTabInicial.java index 979578032..b94de8bac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusao.java index acb852a40..6b0b4a918 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusaoProcTrab.java index 43dae1fc6..6735731fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolha.java index 2321b3eed..01a6a5add 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensal.java index 4e317e53f..a66761bb3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensalPF.java index 35ec54944..1c4d909ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaOpp.java index ade0c1633..c70ce5d33 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaSemRetificacao.java index 20987a35a..2db71f2eb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoContrib.java index fdbf89152..209c304c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoMensal.java index 06db97dcf..dd443ec4b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoTrab.java index a0b00427c..cc6f7144f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrab.java index b04a1f73d..dd6651ad4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabAdmissao.java index b58b3a091..17e86be33 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabIndGuia.java index 22814ea37..059e6092a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabJud.java index 06d8b4167..3938a5fc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabPJ.java index c669a5dd1..234482a3f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeTrabSemVinculo.java index 899b2d833..83e2826a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculo.java index b54ea67d0..3961f9ca2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoBaixa.java index 780f147d2..d2c8ab6c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoSst.java index 4d276bd1a..84610fafb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoEstagiario.java index 723ac78e6..20345f6f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoInterm.java index f5a1cbd2c..30297fdc6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoMV.java index 2983e9887..d2adecfd4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoRRA.java index b8aafab26..405457b2c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoSimples.java index 928db8d73..17056d764 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TItensRemunRpps.java index ec97dc23c..44a059cd3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TLocalTrabGeral.java index 793f501f6..f3b9e1baa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNascimento.java index b70afe565..4ed37b382 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNovaValidade.java index bc427ddc2..6aaa5ad7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TProcJudTrab.java index c7e8c7097..1e7867c68 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TRemuneracao.java index 090f7238e..7748543db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSexo.java index e4b27e455..5013755ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSim.java index a1417fd78..f9ff705da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSimNao.java index fc1199c78..da51f6a0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConv.java index 0f71f9c5a..53987a53c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConvFGTS.java index dc2a08627..f954bcc64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSUf.java index e45b37819..a4347cf5c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSucessaoVinc.java index 42b9c9a97..f41ddf1c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TTreiCap.java index 944006d50..07c77ad81 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformType.java index c69f39b96..d98b9fb63 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformsType.java index 1c036f9ab..9bab59261 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509DataType.java index eca80768e..61cbbc604 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,12 +80,12 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509IssuerSerialType.java index d4de4cd72..e4ef147dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/package-info.java index 0e33d187b..79cd800da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/excproctrab/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:07 PM BRT +// Generated on: 2024.08.02 at 09:10:18 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtExcProcTrab/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/CanonicalizationMethodType.java index e2436368a..96bdc17ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DSAKeyValueType.java index 5abe28e65..d9298af39 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DigestMethodType.java index 02fb3950c..1fa31642f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -71,8 +71,8 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link Object } + * {@link Element } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ESocial.java index 2bf10c717..73d822508 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyInfoType.java index b260ea91c..1e379492f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Object } * {@link String } + * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyValueType.java index e639fbd7f..49aa80d50 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ManifestType.java index 514d39736..1e9b662dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectFactory.java index db2d6f08e..9295fb668 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -56,11 +56,11 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); @@ -970,15 +970,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -997,6 +988,15 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -1007,12 +1007,12 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectType.java index ffd33ac29..9ae50c8fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -83,8 +83,8 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link Object } + * {@link Element } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/PGPDataType.java index 21a58d11a..b1c11bbe2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RSAKeyValueType.java index c9b53c05b..22a8a462b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ReferenceType.java index f70dd6cf0..73c07683e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RetrievalMethodType.java index 7ddc94afd..3a8756c62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SPKIDataType.java index 51f2ab35c..a72f508ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } - * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureMethodType.java index 10e850e12..d53055c9a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertiesType.java index 7dd0a98c9..f7f51aaae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertyType.java index 6198c9a8e..e41ca777a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -80,8 +80,8 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link Object } + * {@link Element } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureType.java index 774115fad..c4a1723fd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureValueType.java index ffe2e2bc5..6c56d9699 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignedInfoType.java index b2def17fe..2d2becb38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAlvaraJudicial.java index 792b52373..99e128541 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAprend.java index 3da2d1595..ac4dc81f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TContato.java index 656bede00..1c564cba3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReemb.java index 55d952b66..eb38107c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReembTot.java index e0e29b606..ed27682bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoBrasil.java index 54ec4236d..68487d5aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoExterior.java index 1ccbc0ae8..c2363f70a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/THorContratual.java index d2cdef8c6..99aeac8e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeBeneficio.java index e0cd8f93e..c8fed003d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregador.java index e839b320e..19d4687d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorCnpj.java index b17775275..128b5d84f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorExclusao.java index 7d2491bbd..8ff338e72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTab.java index 679ffec87..8f48e895a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTabInicial.java index 3380a0081..00bc6f7eb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusao.java index aaf665805..8cbc4cf86 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusaoProcTrab.java index 852a24e9d..889b9e6e0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolha.java index bc38c1270..dfde8d747 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensal.java index fa55c2717..f521c5438 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensalPF.java index a7b5be038..4e2460ce2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaOpp.java index 3d9c37aeb..7a2dd68b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaSemRetificacao.java index e9d3135fa..3fe0faafd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoContrib.java index 99a1c9c48..e16c03e6c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoMensal.java index d2e2d3f31..134fb5a7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoTrab.java index dcd8b3da1..98a6e4ef7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrab.java index 9f1620f17..8c8675446 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabAdmissao.java index cf86cc4da..11e6a1aeb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabIndGuia.java index 137042d10..4d5c40b22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabJud.java index 642d13801..26d7725f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabPJ.java index 3329a57ea..8181017cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeTrabSemVinculo.java index 58531c4b9..35bff6edb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculo.java index 1e730bb2f..657027dc0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoBaixa.java index 47e3a0e46..60baad8bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoSst.java index 301268665..a38a4533a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoEstagiario.java index 6c02bc1bb..feccfec05 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoInterm.java index 7e73f4bf2..b0f817a10 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoMV.java index 38d899d37..215ada908 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoRRA.java index 476405936..653d63c7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoSimples.java index 367502c4e..2ffddc990 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TItensRemunRpps.java index 28312fb37..4b2f34403 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TLocalTrabGeral.java index 7713d5319..89ce1e598 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNascimento.java index 74ca4a7f3..3260d6bcb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNovaValidade.java index 20ca68684..7cbbd0044 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TProcJudTrab.java index 965d2da13..cb3d538a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TRemuneracao.java index 284e34946..ca34395b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSexo.java index 5c1e037ba..4ccc19493 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSim.java index 35d9e6b85..d8de73b93 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSimNao.java index c0d75ab5c..183207b66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConv.java index a9886193d..286bbda9d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConvFGTS.java index cb16a7d0e..44f73f393 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSUf.java index 0fba2652d..9c05efaa2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSucessaoVinc.java index 9bb74cd95..b9f15a998 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TTreiCap.java index 84b2decd4..7904f5322 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformType.java index e5cb1965e..03788d2fd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformsType.java index 71306d87e..7c2b23024 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509DataType.java index d8460b299..352c5bc71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @@ -53,10 +53,10 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) @@ -80,12 +80,12 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509IssuerSerialType.java index ae4bafafb..f744b55e9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/package-info.java index e2b6122c8..4368b777c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/exprisco/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:08 PM BRT +// Generated on: 2024.08.02 at 09:10:20 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtExpRisco/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/CanonicalizationMethodType.java index 2d0bd12ec..bf540a10f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DSAKeyValueType.java index d378020a5..24fd5866a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DigestMethodType.java index 61b2e3b09..20d1fb651 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -71,8 +71,8 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ESocial.java index 8064789e6..c1db30ac1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyInfoType.java index 031bc7f87..49fb91a76 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -61,11 +61,11 @@ public class KeyInfoType { @XmlElementRefs({ @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @@ -96,15 +96,15 @@ public class KeyInfoType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyValueType.java index 4a67f7789..b8d09e8fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Element } + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ManifestType.java index 8135d83c4..ea8699749 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectFactory.java index 57a4b266b..790978c40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.fechaevper @@ -907,93 +907,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectType.java index 56f1033ee..7f9ecca74 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -83,8 +83,8 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/PGPDataType.java index 4dd2c0610..1164cd986 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RSAKeyValueType.java index 91c968b01..2ae495bd6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ReferenceType.java index 76bd0168b..c389394b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RetrievalMethodType.java index 438a40377..2c5388b84 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SPKIDataType.java index 55a649560..143014071 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureMethodType.java index 720f1fc35..00784ad6c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -76,8 +76,8 @@ public class SignatureMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertiesType.java index 76a68ac0d..d04378050 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertyType.java index 6fb0b9cc6..1890a5c88 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -80,8 +80,8 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureType.java index 7b5376f30..f0e1a8dab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureValueType.java index 78faf14b6..d04863358 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignedInfoType.java index 7b670b596..6cfd8750a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAlvaraJudicial.java index e1cac4dab..73aa670d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAprend.java index bd7e7ea50..198727ce2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TContato.java index f4a4f0e32..04da62a25 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReemb.java index 8af40f062..c20051dca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReembTot.java index 65b1ebd42..2a37bf497 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoBrasil.java index 2f0b03d2a..05804d933 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoExterior.java index 9534a052b..129363daa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/THorContratual.java index 0395efa6e..53d2c7f14 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeBeneficio.java index 86591055c..4ed55ede1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregador.java index b783b3812..ff86d83c7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorCnpj.java index 8d2d43e0a..8abdf2a7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorExclusao.java index 8ec221cce..56cffcb4e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTab.java index 401d2fda7..dd5e23ff3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTabInicial.java index 86d824362..fd00282ec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusao.java index 103d2b1d2..0633c880c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusaoProcTrab.java index 5ec1ef3ab..cc00544c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolha.java index d5fc489be..751030ad7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensal.java index 81df2ad89..8cda92cd8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensalPF.java index 527abb6d2..3c0826e22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaOpp.java index dc93a87d5..f38c3235c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaSemRetificacao.java index b0520d787..cb58e036d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoContrib.java index 3f32d5a66..0124f68e3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoMensal.java index 856302554..2cd63af48 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoTrab.java index 9771b735a..54057f102 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrab.java index a99d7cf7f..38b3473a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabAdmissao.java index 68c538150..317f351a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabIndGuia.java index 163891ecc..7f0a16dbe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabJud.java index 11f2c41ef..537f18693 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabPJ.java index 1b951b49e..60e4580c7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeTrabSemVinculo.java index 20892a996..83c42cf66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculo.java index e2da28d7a..ed4eb0040 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoBaixa.java index 9b206fe9e..80c4f11ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoSst.java index db5e73563..32eedd3a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoEstagiario.java index 5e5889ef0..279e4d208 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoInterm.java index b6c690e24..5df4fb456 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoMV.java index ab464ab51..17b107491 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoRRA.java index e4f26e482..5f81249a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoSimples.java index b98c4e548..cbe588908 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TItensRemunRpps.java index 1717802f9..d8fc5a63c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TLocalTrabGeral.java index a51e06095..fbb8e4fc8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNascimento.java index 0f2a4871d..f23f59874 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNovaValidade.java index e02f787fa..7d75bd3ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TProcJudTrab.java index 71f2c5bfe..f772e1e71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TRemuneracao.java index 444ae584a..5cbc2e832 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSexo.java index 76376b8f5..653b074ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSim.java index 3afc4c114..f52947f9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSimNao.java index d4be13040..5131e517c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConv.java index 377fbe5af..776649938 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConvFGTS.java index f3583b779..dad59bebf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSUf.java index ab57fd9f1..ff3acabea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSucessaoVinc.java index 30db0b503..78a21f601 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TTreiCap.java index 0a2d22732..9cc6a3101 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformType.java index a3e63dbdc..666314975 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformsType.java index 264dde380..6a6bc7575 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509DataType.java index 83e8066e6..c08fa5582 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509IssuerSerialType.java index 14f2976c8..1dcd92b1e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/package-info.java index 4e74c1bb4..b2f2ce830 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fechaevper/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:22 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtFechaEvPer/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/CanonicalizationMethodType.java index 5b2330705..8f38963a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DSAKeyValueType.java index bf84f1cdf..ff04562cb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DigestMethodType.java index aca7062c3..2a41133f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Element } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ESocial.java index 622d0a219..2da9a1d5f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyInfoType.java index 9917457f1..ab868bf7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link String } - * {@link Object } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyValueType.java index c0b67103b..f80fdf40b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link String } * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ManifestType.java index 26312bc5f..61fc922a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectFactory.java index 90e6ebe75..7cedd6a61 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.fgts @@ -954,24 +954,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1017,6 +999,33 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -1035,13 +1044,4 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectType.java index 3de95024b..43c910b65 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Element } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/PGPDataType.java index 6ff0b99db..67eb4b856 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RSAKeyValueType.java index 23ac4219f..88c536c83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ReferenceType.java index eb8cc44ef..73e381cbf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RetrievalMethodType.java index f9445a783..51a8dcc7e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SPKIDataType.java index 1521232be..72c7f6e7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureMethodType.java index 8b8b87eca..97634ebc5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -75,8 +75,8 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertiesType.java index 2fa9937a4..3fef76ba0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertyType.java index 90694979b..24fd750f9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Element } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureType.java index 94396783b..8df375697 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureValueType.java index 4f3a53055..42a5de030 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignedInfoType.java index 8f671b867..b6b4c99d3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAlvaraJudicial.java index 88c18e3db..53c83dd08 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAprend.java index 1adc9748b..10c84c4b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TContato.java index c4ae72c78..0032fec84 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReemb.java index d36ed2828..621dd5c38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReembTot.java index 99e18494c..a814ec638 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoBrasil.java index b24cee75d..2fb46e7db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoExterior.java index 747a5a17d..db0d13ef8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/THorContratual.java index 3016a04c6..d42248cbd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeBeneficio.java index ee9d8d64c..c74289ed1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregador.java index 897ffb99c..ca4473c4c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorCnpj.java index ec7affc0a..53c37841e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorExclusao.java index 14d9de989..02c20f2fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTab.java index 5eb034657..12c774d1d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTabInicial.java index 0803934b9..58ee4047d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusao.java index 07ec8599a..6bb763a84 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusaoProcTrab.java index 6dd8d14dc..54f7dc9f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolha.java index 48aabee35..c6f32c356 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensal.java index edff48f6d..7d232f44b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensalPF.java index d22117dd8..5126c54bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaOpp.java index 8fd952bd2..a65545a4d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaSemRetificacao.java index f360ba0f5..23fc85ff4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoContrib.java index c25c7754d..98baab2c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoMensal.java index 463df05f1..62c9aa6ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoTrab.java index e74a13bee..d73f8b412 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrab.java index d28bd764e..e3c389988 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabAdmissao.java index 8c026e75b..7b329df95 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabIndGuia.java index 486cfa20e..d01d0bd0b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabJud.java index bef63cb75..f610126a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabPJ.java index 1d66a4586..30d44dc72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeTrabSemVinculo.java index 98504000c..d855f3ae5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculo.java index 77b96b184..7f30d076d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoBaixa.java index a90eae745..bfebb9ae0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoSst.java index 5d54fd750..4024adb7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoEstagiario.java index 891b8bfc0..f431a9ee7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoInterm.java index cbd72ba78..f66e1c595 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoMV.java index 08bb446d4..e70214053 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoRRA.java index 35b8c5735..29b18e8e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoSimples.java index d44f92049..c03030986 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TItensRemunRpps.java index c2b9573e2..dc1a6e056 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TLocalTrabGeral.java index bb9a93ac6..93e808d27 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNascimento.java index add89b8d2..fe3eede2c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNovaValidade.java index cebc200bc..f9e845f2a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TProcJudTrab.java index 299fbb92f..abcc21942 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TRemuneracao.java index 6730b33e1..4ed075209 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSexo.java index 508e2a7e1..85311b291 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSim.java index a8227d273..b7921a4a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSimNao.java index 24c73c111..c244d6259 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConv.java index 9e47a0333..5e7b8182a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConvFGTS.java index cc2e62490..07b9e3e54 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSUf.java index d57c8e4a6..738e8e29a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSucessaoVinc.java index 0fb108519..e7c301679 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TTreiCap.java index c301c0d54..2c3e3b2ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformType.java index 6c3af9073..46a33ddb3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link String } * {@link Element } * {@link Object } + * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformsType.java index 50c5b8d3a..a3ac0225c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509DataType.java index d67d0b8ae..320423af4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509IssuerSerialType.java index d9e507878..ef2ffbda2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/package-info.java index 376edb6df..46859d524 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgts/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:25 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtFGTS/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/CanonicalizationMethodType.java index ae462573f..868990805 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DSAKeyValueType.java index a6931d16d..80602897d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DigestMethodType.java index 9b68bb58e..4091e8e0d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ESocial.java index 76e6863a7..d74d1d7b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -90,7 +90,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="infoFGTSProcTrab"> @@ -106,7 +106,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_tpInsc_EstabLot"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_nrInsc_EstabLot"/> - * <element name="basePerRef" maxOccurs="unbounded"> + * <element name="basePerRef" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -287,7 +287,7 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="infoFGTSProcTrab"> @@ -303,7 +303,7 @@ public void setSignature(SignatureType value) { * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_tpInsc_EstabLot"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_nrInsc_EstabLot"/> - * <element name="basePerRef" maxOccurs="unbounded"> + * <element name="basePerRef" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -825,7 +825,7 @@ public void setCpfTrab(String value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula_retorno" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="infoFGTSProcTrab"> @@ -841,7 +841,7 @@ public void setCpfTrab(String value) { * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_tpInsc_EstabLot"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_nrInsc_EstabLot"/> - * <element name="basePerRef" maxOccurs="unbounded"> + * <element name="basePerRef" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -1016,7 +1016,7 @@ public void setInfoFGTSProcTrab(ESocial.EvtFGTSProcTrab.InfoTrabFGTS.InfoFGTSPro * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_tpInsc_EstabLot"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_nrInsc_EstabLot"/> - * <element name="basePerRef" maxOccurs="unbounded"> + * <element name="basePerRef" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -1128,7 +1128,7 @@ public void setIdeEstab(ESocial.EvtFGTSProcTrab.InfoTrabFGTS.InfoFGTSProcTrab.Id * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_tpInsc_EstabLot"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_nrInsc_EstabLot"/> - * <element name="basePerRef" maxOccurs="unbounded"> + * <element name="basePerRef" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -1174,7 +1174,6 @@ public static class IdeEstab { protected byte tpInsc; @XmlElement(required = true) protected String nrInsc; - @XmlElement(required = true) protected List basePerRef; /** diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyInfoType.java index 31900b7df..3ae98a7e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyValueType.java index a0e86d138..01ae46b3e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Object } - * {@link String } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ManifestType.java index 32d8e9878..5e2039e73 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectFactory.java index 6dc30bed7..df7b22832 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.fgtsproctrab @@ -962,33 +962,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1034,6 +1007,15 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * @@ -1044,12 +1026,30 @@ public JAXBElement createTransformTypeXPath(String value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectType.java index eb6403530..d031310e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/PGPDataType.java index 8bf68e901..90a61e153 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,9 +88,9 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RSAKeyValueType.java index 29a4380c3..3125ffda9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ReferenceType.java index 7b435264d..443d25acc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RetrievalMethodType.java index a64aa7e5c..ae37ca887 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SPKIDataType.java index c6212be3f..4a573e7ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureMethodType.java index 686a87c10..e08bdcc68 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertiesType.java index 3434a1f67..ae052f5db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertyType.java index d2298f05d..cf5751361 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureType.java index babf40004..7b7d2fabb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureValueType.java index 1174697c8..71bbb2085 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignedInfoType.java index a58658007..5c484f569 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAlvaraJudicial.java index efa3917ae..492e401f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAprend.java index ce66f8169..7207465d6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TContato.java index da7bf2eb1..efe7c80d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReemb.java index c9dc9dd2c..c7e04197b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReembTot.java index 2aa4aa235..496eda91d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoBrasil.java index 062fe3c77..d19f57376 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoExterior.java index 07d027356..9f354b6c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/THorContratual.java index cee7e9d1f..139974a81 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeBeneficio.java index f86c80387..8e286a8f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregador.java index 23a66834c..f34fa6897 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorCnpj.java index 5f21c9d36..1ac561a78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorExclusao.java index 672670d15..b0b7cb817 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTab.java index 46ef2c0f0..9f982a38a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTabInicial.java index 098a0f18d..8a0b49477 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusao.java index e50658d6d..de264af02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusaoProcTrab.java index fddbbbe5f..637be66a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolha.java index ce64b556f..31bf73723 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensal.java index 57c990d09..57505c80d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensalPF.java index a358df6f7..a939b10e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaOpp.java index 7fe275487..3418b42ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaSemRetificacao.java index b0a115379..8a69b70ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoContrib.java index d4f830ac8..0696adfc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoMensal.java index b82abef76..4cfc5e471 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoTrab.java index 137cdae16..aec0496fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrab.java index 6e101b3cd..ff39daae4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabAdmissao.java index 3787a1a6b..12355165b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabIndGuia.java index e3a4ef313..9de0471e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabJud.java index e214836b4..3807132ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabPJ.java index 14ca0bbbb..24933826a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeTrabSemVinculo.java index a023ef13a..30a75ee9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculo.java index 073d5bae6..03ff15427 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoBaixa.java index 428f5df05..cdc732499 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoSst.java index c70d9714a..9761231e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoEstagiario.java index 8e72013ca..8d241100c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoInterm.java index 5d74ddfda..363488450 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoMV.java index 106933b0f..ca5a04663 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoRRA.java index 18e9c4251..d26c36f7d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoSimples.java index 3c2d7e384..09e5ecfa1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TItensRemunRpps.java index 9f400b311..8ac5e8ed5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TLocalTrabGeral.java index e2dfa1e52..b817cf4c7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNascimento.java index 9419000d1..750c4bf83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNovaValidade.java index 75a46dd22..80f179a7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TProcJudTrab.java index bf1b2617d..98b149a39 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TRemuneracao.java index f4f3b6437..461ad52f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSexo.java index 430e2c842..afb87e6de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSim.java index 89d9d2aa8..1e6e2eab7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSimNao.java index 7c63b2c47..312986c7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConv.java index 030995c0b..cd908d0c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConvFGTS.java index b12f74c14..8dafd3034 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSUf.java index 075a83b61..5ddf48ffe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSucessaoVinc.java index c44b6839d..79c1dc87d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TTreiCap.java index ed8cb01cb..a973a0211 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformType.java index a41b79389..797a7cb92 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -75,9 +75,9 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformsType.java index 8c879b6cb..9d380d4e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509DataType.java index 5f7a557fd..7b0dc3d5d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509IssuerSerialType.java index cbe82509b..c96bdabe4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/package-info.java index e336a7169..3f080a4cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/fgtsproctrab/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:09 PM BRT +// Generated on: 2024.08.02 at 09:10:24 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtFGTSProcTrab/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/CanonicalizationMethodType.java index d7c0c35b4..da4a5a161 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DSAKeyValueType.java index ca1b5c0c6..316518c42 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DigestMethodType.java index 03c2ef363..9e826fb40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ESocial.java index 46bab3504..aba6dd60c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyInfoType.java index 8ef3edaaf..6a61ea2b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyValueType.java index e49553d48..6b009fe5a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ManifestType.java index d23907e6c..2b608e62f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectFactory.java index 94feafe94..6d3459536 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -61,11 +61,11 @@ public class ObjectFactory { private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.infocomplper @@ -976,21 +976,21 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -1003,21 +1003,21 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectType.java index a78d16071..e537e9960 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/PGPDataType.java index 1f5315f62..d1537ee4f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RSAKeyValueType.java index 9918781f8..9aebd06e2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ReferenceType.java index 550416382..9ff98787c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RetrievalMethodType.java index cddf3e300..6ffd402db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SPKIDataType.java index a2662e9bb..31988eae0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureMethodType.java index c54b119df..822274116 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertiesType.java index 2495a6d75..1768832b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertyType.java index a64c4f050..50d93107a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureType.java index d6b5c4130..463471b4e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureValueType.java index e223c4e58..916191dc2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignedInfoType.java index f427ed433..c50078ccc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAlvaraJudicial.java index e84a5b0d2..2703575db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAprend.java index 3506e52c5..d4ba8cad1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TContato.java index 36b67136f..3c44555b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReemb.java index 81f8f7eb8..da14e24a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReembTot.java index e08ff8199..b33bb4427 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoBrasil.java index b422d651a..56d1c98bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoExterior.java index 8fc80a70e..ee6dfda99 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/THorContratual.java index 5143ab208..601b5be9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeBeneficio.java index 0c0c4aa38..e626b8a24 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregador.java index 994c590fb..32d0b38c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorCnpj.java index ca928478d..3abe40f16 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorExclusao.java index 6025b9059..891acd1ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTab.java index 08bab7a23..e7ccc21a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTabInicial.java index 37bcb6afc..c95936ff1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusao.java index c07bb984d..815e1ffc4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusaoProcTrab.java index 1b2cce4b3..d29614a55 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolha.java index 4d50ae60d..a9c6405d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensal.java index ae434efa2..6de5a4053 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensalPF.java index 0eaced60c..7567fdb6e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaOpp.java index 047572b9d..6d91e3c83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaSemRetificacao.java index 964a266ae..b634bf14a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoContrib.java index 1c3cf7d45..d6a5671f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoMensal.java index c84f8ef88..fc853d064 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoTrab.java index 510f524d0..677339187 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrab.java index e252bbc19..6fb65c3ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabAdmissao.java index 1b11def82..610bf2064 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabIndGuia.java index 2233e6a34..7ff046a80 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabJud.java index 99f1385e2..4d72e59bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabPJ.java index 5476a8edf..d2981dacb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeTrabSemVinculo.java index f608cceea..14f395207 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculo.java index bb2cbc5e9..b09bd418b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoBaixa.java index 8db15f5f6..1c6e778a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoSst.java index 3f2f62c1c..c0bd8c274 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoEstagiario.java index b4d3ad2b2..94b64405e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoInterm.java index a2cd47bc9..b4d3dd849 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoMV.java index 9055df7a9..e5dc15e55 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoRRA.java index 60a9e29a6..547493e56 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoSimples.java index d14c9d805..1a8a8c73a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TItensRemunRpps.java index 5bd6a44bf..191c61ee6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TLocalTrabGeral.java index eef372d1f..7ca75d0a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNascimento.java index 102ac822f..384b59253 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNovaValidade.java index 7ec631a98..9f1c0b607 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TProcJudTrab.java index b5378a936..7ce5632a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TRemuneracao.java index 0a0a5739d..2ed0a3a60 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSexo.java index 04a2e94ed..d96401430 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSim.java index d6183e261..8156e18a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSimNao.java index ada2bdcd2..21fe39d72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConv.java index c05aa8589..690e1ec47 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConvFGTS.java index 180308f41..289064ce1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSUf.java index eda94f59d..208f7fa89 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSucessaoVinc.java index d91b942cc..7fa78a88c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TTreiCap.java index 74b4aa29b..f15dbb567 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformType.java index 75ec524a5..322907434 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformsType.java index e00e02cfa..24a8fe118 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509DataType.java index 93748346c..585e8661c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @@ -53,10 +53,10 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509IssuerSerialType.java index c2705cfb0..2f2454194 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/package-info.java index e37b6235e..1120743ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infocomplper/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:10 PM BRT +// Generated on: 2024.08.02 at 09:10:26 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtInfoComplPer/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/CanonicalizationMethodType.java index d3f353cbe..599b31b4b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DSAKeyValueType.java index d951ad22a..53bafd4f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DigestMethodType.java index 04f0f0b1c..217033171 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ESocial.java index edfd7d114..b7c17c500 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyInfoType.java index 54ab58519..c34982fb2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -61,12 +61,12 @@ public class KeyInfoType { @XmlElementRefs({ @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link String } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyValueType.java index fa3355392..472bf65cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list + * {@link Object } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Element } - * {@link String } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Object } + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ManifestType.java index 0ad74ad4c..60de19817 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectFactory.java index ce33aa71d..d7bcf1503 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.infoempregador @@ -971,21 +971,39 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -1042,22 +1060,4 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectType.java index e270cdeb4..3e06b6db6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/PGPDataType.java index 817978e20..ec5b6ac22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RSAKeyValueType.java index 0e0f57dbd..988928c3a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ReferenceType.java index 4f607fbcc..4b0b36e56 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RetrievalMethodType.java index cd1a5ae3e..64a682f9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SPKIDataType.java index b9c62065b..1f0615e9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -68,8 +68,8 @@ public class SPKIDataType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureMethodType.java index 9bef4e364..f6a12543a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertiesType.java index c0e1d66e6..290adaba6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertyType.java index 719430959..710ffce48 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureType.java index 1eaa8c5ff..44a0644b5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureValueType.java index 255cb8591..a4e47911c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignedInfoType.java index 1f54d9aef..d81cf4787 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAlvaraJudicial.java index 0a82080b4..0bd9bc7cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAprend.java index 37b186b15..a27844133 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TContato.java index f7fa5b6a2..e7d423d1f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReemb.java index 8cfd1b535..c5f967394 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReembTot.java index 97ac0b7de..63c927100 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoBrasil.java index d9f9ff7c4..f7ebf47f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoExterior.java index 9b6ca927a..139ddbea9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/THorContratual.java index e495e11cb..3f6b49ffe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeBeneficio.java index 16646577c..08f47795f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregador.java index c02299c81..8deb30a7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorCnpj.java index 6803fd8c6..379aa2a4c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorExclusao.java index eb4a0a684..215ace291 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTab.java index 9c659144a..0e3ee0b0e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTabInicial.java index 68904ff11..49bc34080 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusao.java index 5e632eb36..18f86b05e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusaoProcTrab.java index 4b2229e71..37fd42e34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolha.java index 9f2e3c00f..1751c03d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensal.java index b94252d62..7f7da2366 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensalPF.java index bd2f83f2e..9b73f2869 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaOpp.java index edd980ebf..3bafee243 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaSemRetificacao.java index ef91f1ee1..d81c1497e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoContrib.java index 4eceabe8c..7329e05cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoMensal.java index cf043022d..9cfa8431f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoTrab.java index 3d0ba8f25..e4443acb7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrab.java index b347a6d0e..beed1ea99 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabAdmissao.java index 39ad6e411..8ef6fcfde 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabIndGuia.java index 89f6aa6a2..ca01697df 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabJud.java index dcf64a2c7..974e56a16 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabPJ.java index 2e8359fe9..4fdb1cf57 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdePeriodo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdePeriodo.java index 7d77964ed..1807e2bf9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdePeriodo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdePeriodo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeTrabSemVinculo.java index d96b33d60..8e6acdf22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculo.java index 1bc91d8fc..6b6eb9291 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoBaixa.java index 302a39c61..5218a6465 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoSst.java index 4940d65fb..45ff66edf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoCadastro.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoCadastro.java index 8d7c2bb30..2213bb9bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoCadastro.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoCadastro.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -43,6 +43,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}byte"> * <enumeration value="0"/> * <enumeration value="1"/> + * <enumeration value="2"/> * </restriction> * </simpleType> * </element> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoEstagiario.java index 8a75d08cc..5f256f9ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoInterm.java index 9a4ef1812..1085143cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoMV.java index 396c40292..12fa79bd5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoRRA.java index f7652b815..ab2fd6b51 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoSimples.java index 890e97590..2da500979 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TItensRemunRpps.java index 6bc7ef078..444962b69 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TLocalTrabGeral.java index 0530bd59d..79d38948a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNascimento.java index 5fc0b5013..627319fe3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNovaValidade.java index 7477f9c97..1344d8fa4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TProcJudTrab.java index 70531e327..b3a3e013c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TRemuneracao.java index b863ca305..5bd2ee48f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSexo.java index 2bc532c01..abf03fb78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSim.java index d1f3c511d..abf74f93c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSimNao.java index 144284aec..725a88d24 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConv.java index 92c27e863..41c523a3a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConvFGTS.java index 15a1d1b54..1695791a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSUf.java index fe517978d..0be8d6fec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSucessaoVinc.java index 108c79c71..7288f7117 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TTreiCap.java index 64ce295af..ca9da0616 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformType.java index ed339abda..18fe550ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformsType.java index 0879d8d64..eb0981314 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509DataType.java index f4fd5808b..50104b2d0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509IssuerSerialType.java index 507244e07..50f0e32cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/package-info.java index 3b7f45908..e5b12d477 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/infoempregador/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:28 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtInfoEmpregador/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/CanonicalizationMethodType.java index c5a927090..717b0340f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DSAKeyValueType.java index 1007fa2dc..ded6a557b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DigestMethodType.java index 3c272af24..84dd97521 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ESocial.java index d4a2f742c..82afdf37c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyInfoType.java index d08dfe155..4dd6866e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyValueType.java index a27deeb12..fd963d41d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ManifestType.java index b7b7b15a7..52efa0873 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectFactory.java index 2dd58de97..d7663cfff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.irrf @@ -923,93 +923,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectType.java index 0d4cca425..65abf6bd5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/PGPDataType.java index 250cacdaf..940e6d886 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RSAKeyValueType.java index f4d73d39b..b7ffb9fd9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ReferenceType.java index 353955e6f..49f342aa3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RetrievalMethodType.java index 58097923f..da687945d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SPKIDataType.java index 26fde71a7..6809c9e26 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureMethodType.java index 6a0905e46..bd66be976 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertiesType.java index 08dc0e954..b63621af8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertyType.java index 668abde95..aa156d7bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureType.java index bb3e2cd81..12821b7b5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureValueType.java index 073d7a9da..e480c0670 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignedInfoType.java index e42b50fcd..0d6adae88 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAlvaraJudicial.java index e5137a7ed..48a5e1372 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAprend.java index c61a5690e..6542edec7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TContato.java index 4eb6aa3a6..1cc779fc3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReemb.java index f36a57357..823150080 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReembTot.java index 3be543231..10a0e69b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoBrasil.java index 412562781..64109969b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoExterior.java index 17bf12b47..ce0870def 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/THorContratual.java index ac5809623..c9060c055 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeBeneficio.java index 659b0cf39..ffc6b42b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregador.java index 01bb3efc1..378ccba7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorCnpj.java index 2f1c7caca..71236365f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorExclusao.java index cc2ac7e27..3ee4c998c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTab.java index f11f4dc3f..51b6be735 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTabInicial.java index 596cd28bb..9ceaafb97 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusao.java index a95858b1b..8b1420b6c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusaoProcTrab.java index 69482c875..eea1ce308 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolha.java index dc7e2bf7f..d94cc835f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensal.java index 9402cba64..b36fd489c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensalPF.java index 24848fad0..e993c66ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaOpp.java index 42aab79f0..4b979f70e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaSemRetificacao.java index 5d81893d4..306dd0590 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoContrib.java index 1dbefd092..9f7e95dc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoMensal.java index 37d3e3a79..a7ee47cad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoTrab.java index 6e274d48c..f6d16b890 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrab.java index 7b98d7200..c60e38a61 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabAdmissao.java index f76de4000..32451bb74 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabIndGuia.java index 0c877337e..665a9d77b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabJud.java index b5885758e..bbca1ce38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabPJ.java index 11485b89c..c4af0a153 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeTrabSemVinculo.java index 01b7721a3..b7b728eee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculo.java index 6b59f533f..16daabfee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoBaixa.java index 03188a254..f956f786b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoSst.java index bcc0815b8..806d4e8c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoEstagiario.java index aa9638b68..992d62d5f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoInterm.java index 6aca14687..09a4a5d8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoMV.java index 9167f92cd..7812fd1b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoRRA.java index 15d805c41..8006df7ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoSimples.java index 4f5b2c581..6a21f7531 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TItensRemunRpps.java index e4a020ae1..7c8e9708d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TLocalTrabGeral.java index 16fc61209..9780ac62f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNascimento.java index 0851ca35e..e5b691577 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNovaValidade.java index bf4e8abfd..956067f7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TProcJudTrab.java index 94a7c0999..5fd22a7a1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TRemuneracao.java index ed1a0fe6b..bfe93f187 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSexo.java index 69bc950ad..081f7c2ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSim.java index 95905acdc..40729de32 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSimNao.java index 5a312274f..200be893b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConv.java index 0e52d44c2..95df52ac1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConvFGTS.java index fbec41aa2..142f3f621 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSUf.java index b04895c10..edb87a3db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSucessaoVinc.java index 5b1a6a84e..e0ac0b179 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TTreiCap.java index f1c2ff443..30977e98e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformType.java index b93901520..6a334629d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformsType.java index 9801b8a33..6f4acd3cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509DataType.java index 0ff195f7a..5270e7053 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509IssuerSerialType.java index ce4226231..1b00761d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/package-info.java index 375fbc00b..b8a1ce1a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrf/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:11 PM BRT +// Generated on: 2024.08.02 at 09:10:32 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtIrrf/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/CanonicalizationMethodType.java index ba7791579..76990a3f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DSAKeyValueType.java index 3e9f4ccca..cc3dcc5f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DigestMethodType.java index 21bc9ba49..c6d8251de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -71,8 +71,8 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ESocial.java index 02248f645..9ea0d8976 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -79,7 +79,7 @@ * </element> * <element name="dtPgto" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codCateg"/> - * <element name="infoIR" maxOccurs="999"> + * <element name="infoIR" maxOccurs="999" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -105,6 +105,7 @@ * <enumeration value="63"/> * <enumeration value="64"/> * <enumeration value="67"/> + * <enumeration value="68"/> * <enumeration value="70"/> * <enumeration value="71"/> * <enumeration value="72"/> @@ -652,7 +653,7 @@ public void setSignature(SignatureType value) { * </element> * <element name="dtPgto" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codCateg"/> - * <element name="infoIR" maxOccurs="999"> + * <element name="infoIR" maxOccurs="999" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -678,6 +679,7 @@ public void setSignature(SignatureType value) { * <enumeration value="63"/> * <enumeration value="64"/> * <enumeration value="67"/> + * <enumeration value="68"/> * <enumeration value="70"/> * <enumeration value="71"/> * <enumeration value="72"/> @@ -1338,7 +1340,7 @@ public void setPerApur(String value) { * </element> * <element name="dtPgto" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codCateg"/> - * <element name="infoIR" maxOccurs="999"> + * <element name="infoIR" maxOccurs="999" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -1364,6 +1366,7 @@ public void setPerApur(String value) { * <enumeration value="63"/> * <enumeration value="64"/> * <enumeration value="67"/> + * <enumeration value="68"/> * <enumeration value="70"/> * <enumeration value="71"/> * <enumeration value="72"/> @@ -1904,7 +1907,7 @@ public void setInfoIRComplem(ESocial.EvtIrrfBenef.IdeTrabalhador.InfoIRComplem v * </element> * <element name="dtPgto" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codCateg"/> - * <element name="infoIR" maxOccurs="999"> + * <element name="infoIR" maxOccurs="999" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> @@ -1930,6 +1933,7 @@ public void setInfoIRComplem(ESocial.EvtIrrfBenef.IdeTrabalhador.InfoIRComplem v * <enumeration value="63"/> * <enumeration value="64"/> * <enumeration value="67"/> + * <enumeration value="68"/> * <enumeration value="70"/> * <enumeration value="71"/> * <enumeration value="72"/> @@ -2190,7 +2194,6 @@ public static class DmDev { protected XMLGregorianCalendar dtPgto; @XmlElement(required = true) protected BigInteger codCateg; - @XmlElement(required = true) protected List infoIR; protected List totApurMen; protected List totApurDia; @@ -2476,6 +2479,7 @@ public void setInfoPgtoExt(ESocial.EvtIrrfBenef.IdeTrabalhador.DmDev.InfoPgtoExt * <enumeration value="63"/> * <enumeration value="64"/> * <enumeration value="67"/> + * <enumeration value="68"/> * <enumeration value="70"/> * <enumeration value="71"/> * <enumeration value="72"/> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyInfoType.java index 255a95e06..fc567a4aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyValueType.java index 41057cd38..4525937c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Object } + * {@link Element } * {@link String } + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ManifestType.java index 4d9b1a804..b4bcbd54a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectFactory.java index cd5907f80..495c71c58 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -64,8 +64,8 @@ public class ObjectFactory { private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.irrfbenef @@ -1179,21 +1179,21 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectType.java index 0946e95ce..e0e3a215d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -83,8 +83,8 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/PGPDataType.java index f511de858..32605a670 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RSAKeyValueType.java index 4a09b9cff..bed5e1dea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ReferenceType.java index 2985f4fb8..a32047711 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RetrievalMethodType.java index c13bb0f52..77ea15f6e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SPKIDataType.java index f6dae55c6..dd3f55afa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureMethodType.java index a2e971f88..3a580ebf8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -76,8 +76,8 @@ public class SignatureMethodType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertiesType.java index 011ef2666..29ed32ecb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertyType.java index eab005c3b..b3edd2bd8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -80,8 +80,8 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link String } + * {@link Object } * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureType.java index 93ed4ce39..be14b10a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureValueType.java index 2afa8d62f..5dc3993fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignedInfoType.java index 6ffa7cef8..799690142 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAlvaraJudicial.java index 168fc6d1b..2d5ab7074 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAprend.java index 2b8555aa2..74e5e85eb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TContato.java index e3c44d943..5707b8163 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReemb.java index 37f21f450..42cff28c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReembTot.java index e6e4ff7df..a192393dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoBrasil.java index 3b675c133..c3a8506dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoExterior.java index f7a0e7cc6..aefc57ebc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/THorContratual.java index 94523bd34..1e719cbfa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeBeneficio.java index 6e50c1a7f..dc437d88a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregador.java index 765931b66..ad2230a04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorCnpj.java index 50e412a37..461a80586 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorExclusao.java index 348efb914..e7364ab45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTab.java index 2b9762191..905550503 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTabInicial.java index 02690c201..c5ad11404 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusao.java index ddeaa3587..448f4a1d7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusaoProcTrab.java index 64e9bfec9..b4a44fa3c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolha.java index 96c91c5cd..76f2a9c95 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensal.java index 3016fb198..c316d3c68 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensalPF.java index f0d53dfc8..9c8ff1b16 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaOpp.java index 7216d7de2..b782e994b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaSemRetificacao.java index 4a6bf0233..50c5dcc76 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoContrib.java index aa6d24f01..53a413a10 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoMensal.java index 05fac1920..27df893a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoTrab.java index 63d58e1d0..dd2d52e6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrab.java index 688b6164b..215abe329 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabAdmissao.java index 2e4c548f2..c4db81f66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabIndGuia.java index 943347c56..bff8c1cb7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabJud.java index 9ab8810f1..21989a3bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabPJ.java index e03609e34..3ff46a45b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeTrabSemVinculo.java index a614057e0..4f70dfcfb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculo.java index 4e60b4917..2662d47a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoBaixa.java index d2d3c2d45..881da67d0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoSst.java index 217780e8e..29cffb224 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoEstagiario.java index 4f2bad574..08e71b8bf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoInterm.java index a293cfd6b..b6265da9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoMV.java index 5347a10b2..512c55d53 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoRRA.java index 8d0a6d5ab..2d64cc309 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoSimples.java index 2cb6abdb7..5e3193379 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TItensRemunRpps.java index 73fafa777..a33bd8cdc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TLocalTrabGeral.java index 86889718f..6af116697 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNascimento.java index f6d4b6011..aba3e8592 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNovaValidade.java index bbe9a6b3e..72dca6c7e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TProcJudTrab.java index 93ae4c8e4..7a589fc6f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TRemuneracao.java index 465a4527f..2cd9d58d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSexo.java index 644a8ed89..ca6b2ca02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSim.java index a083be77a..e0805586d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSimNao.java index b638f087d..1879f3ba1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConv.java index ec90b8db8..4967192c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConvFGTS.java index 689301f90..aa4a6b1ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSUf.java index 850fca30a..3599d2f0f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSucessaoVinc.java index 442446906..1747e3f04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TTreiCap.java index 6d346b146..b07beb4af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformType.java index 2e05f099a..6a619df32 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -77,8 +77,8 @@ public class TransformType { * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } - * {@link Object } * {@link String } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformsType.java index 11d9dda25..92cc50c9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509DataType.java index 23229dad7..91ca4054c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @@ -53,10 +53,10 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509IssuerSerialType.java index a2ceea30b..dd2026427 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/package-info.java index d2eb53a14..1b9c43632 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/irrfbenef/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:30 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtIrrfBenef/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/CanonicalizationMethodType.java index 8b3de108a..384464bea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DSAKeyValueType.java index 3e3f37270..60263ccf1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DigestMethodType.java index bb04b706a..0e701c3ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ESocial.java index 7df12f2b8..c3aae2e8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyInfoType.java index ed0df7f0b..c501f9523 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } + * {@link Object } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyValueType.java index 5ecc909d5..a9ebfdccd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Object } - * {@link String } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ManifestType.java index 0abdde381..41e1bdd72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectFactory.java index 308f4f058..43917af00 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.monit @@ -938,33 +938,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1010,6 +983,15 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * @@ -1020,12 +1002,30 @@ public JAXBElement createTransformTypeXPath(String value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectType.java index 33dfa1792..0496abc9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/PGPDataType.java index b1b2429be..3fe29dd59 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,9 +88,9 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RSAKeyValueType.java index 105461795..b9a44eea0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ReferenceType.java index 819017bce..29228059f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RetrievalMethodType.java index a8ba6c76b..091df48be 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SPKIDataType.java index 09ff73836..8077ae0aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureMethodType.java index 1f99ae9c1..21564e662 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertiesType.java index 28a72c5fe..b3dca1d03 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertyType.java index 36bc6be89..bd6648caf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureType.java index a25b2ff16..1051d9a27 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureValueType.java index 4c870feac..0d3c56239 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignedInfoType.java index b5742d628..accff9285 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAlvaraJudicial.java index f792b6754..4d110c830 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAprend.java index 36e98ed37..a1f1eefc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TContato.java index 3a63d6d84..bca6dc1e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReemb.java index 70e24f7c1..9f7386c7a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReembTot.java index d66120d09..5b0edbf0f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoBrasil.java index 2077c66dd..d18788bd3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoExterior.java index 791a28d68..8697f23ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/THorContratual.java index 3c36f252a..4544a8c03 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeBeneficio.java index befa91c8c..ff743d969 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregador.java index 75f1b6f98..9a9760d87 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorCnpj.java index 1f348fd0e..b79f751d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorExclusao.java index c8c7bffc9..abd4e9e58 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTab.java index 732c94768..5f7f53321 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTabInicial.java index 90de26385..46d0def4f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusao.java index 1a7ec01b0..63d12bd91 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusaoProcTrab.java index 045f2abd0..db9f0dac8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolha.java index 87372d970..e1551cb77 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensal.java index c1676b646..cd89d988c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensalPF.java index 3366ffc17..8433c517f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaOpp.java index 61f43bd86..eb1aa5464 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaSemRetificacao.java index 396707311..a10796ca6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoContrib.java index 74d155f81..c8272c0a8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoMensal.java index d5398e912..1ff9ad42f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoTrab.java index fb9985031..74e60cbd0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrab.java index 70449cb31..d118d5b82 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabAdmissao.java index eace976c6..29b01e206 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabIndGuia.java index a588676ef..761b7efd9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabJud.java index 97c057267..a0179c8e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabPJ.java index 514fd617b..8cc9d3be6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeTrabSemVinculo.java index f3b9b36d4..e5370e3c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculo.java index 0b50ecd0b..d9ddedc73 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoBaixa.java index 515c838a1..7d39eace1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoSst.java index db70db986..3d92f21e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoEstagiario.java index 365365547..064d6ccff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoInterm.java index faaf08807..fdf74627a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoMV.java index 5fd290504..f65b5ec51 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoRRA.java index 4f40036e6..c4b5d7287 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoSimples.java index 8dd9e8c68..6e76d0ca9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TItensRemunRpps.java index 5fbeae2e2..a52e8887d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TLocalTrabGeral.java index 7865ee1b0..636808b7d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNascimento.java index ec0d10e6c..841107e32 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNovaValidade.java index 48beefae0..3a00180ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TProcJudTrab.java index 2477854ce..67090d94a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TRemuneracao.java index 4a34ab79b..fe5bae130 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSexo.java index 43cb1cd0c..f0d556976 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSim.java index a54be0e2f..909a21a21 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSimNao.java index de3ac4b92..87c6b100e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConv.java index b6a949915..e22c4d00f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConvFGTS.java index 8ecbb7a25..501c5b63a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSUf.java index 5c777cb1c..2316a7128 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSucessaoVinc.java index 4da25dcf6..363e2c05d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TTreiCap.java index 62200802a..68bac30fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformType.java index f3fe77428..33017c60f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -75,9 +75,9 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformsType.java index 4187eeaa5..850819790 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509DataType.java index 21ba54c7e..3314e07be 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509IssuerSerialType.java index 664fb9bf0..76e87b420 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/package-info.java index 9104c274c..e2293293f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/monit/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:12 PM BRT +// Generated on: 2024.08.02 at 09:10:34 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtMonit/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/CanonicalizationMethodType.java index 27b9d6f5b..208ce6ed0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DSAKeyValueType.java index 9f6838d49..39f8c6993 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DigestMethodType.java index 16784f71b..d70b13813 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ESocial.java index 7a204d151..1a1941a0a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyInfoType.java index e7d673999..96c1557e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyValueType.java index d5637bdff..6a3651c4e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ManifestType.java index 899b417fc..ee507b0b6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectFactory.java index 9873a48ad..0a7ea5b17 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.pgtos @@ -1043,93 +1043,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectType.java index eb536e148..768718dda 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/PGPDataType.java index cd0ab9264..5dc996315 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RSAKeyValueType.java index a8c54e168..1f2352d61 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ReferenceType.java index 320c0a104..488cf721e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RetrievalMethodType.java index d429fbeb2..cfa569d36 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SPKIDataType.java index 5f6f56e69..e294ca96d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureMethodType.java index 39109e198..b6bcaf40d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertiesType.java index b2d6de417..6792db03b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertyType.java index 80064af78..daefc3666 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureType.java index 3ac5dfb94..431a0231b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureValueType.java index 5e8eaf510..1d97283c9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignedInfoType.java index a406c43c7..0dd96d3e9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAlvaraJudicial.java index f000f4fd2..3a744af9b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAprend.java index 74d7a1f1c..5b05eca49 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TContato.java index c41f4ad7c..1976c7b7e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReemb.java index 20f549e74..b2ee4ab5c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReembTot.java index 799d7d02b..657820ca1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoBrasil.java index ab50c1d4e..a1deba6c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoExterior.java index b41956976..ebcb3653a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/THorContratual.java index 68d120e79..8546445be 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeBeneficio.java index 58ea8a62b..051bb2d70 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregador.java index c5e742cac..bdf7edf54 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorCnpj.java index 017734946..52fb479e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorExclusao.java index 7e085d9c7..5220fc3bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTab.java index 62a9283a2..de0903cec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTabInicial.java index c75b89a41..9d672c1b8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusao.java index 073a2b766..cb1603c38 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusaoProcTrab.java index 203ddcc56..34fabb59e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolha.java index 5e0c662f4..3c395b226 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensal.java index 449a2e5da..ed3d930b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensalPF.java index 393f3e2a8..025ac8ca9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaOpp.java index 3147158b3..f87568739 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaSemRetificacao.java index 20bd85a00..686133c95 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoContrib.java index 8045add03..063cb581f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoMensal.java index 1bdfa78cb..4cbf36f36 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoTrab.java index 98e6f6140..1726b8e4d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrab.java index 7ab5d2590..ed4d79e9b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabAdmissao.java index dc100a5db..3d4b9f4a9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabIndGuia.java index f0b2874b8..feffc69d9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabJud.java index c2b8fadab..9ba7643d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabPJ.java index 14813f520..89f101390 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeTrabSemVinculo.java index 57a21fb41..bd4f0cb45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculo.java index 07cfb9996..34a825690 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoBaixa.java index dd107aa6f..c08f933fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoSst.java index cc38a6280..650ba988a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoEstagiario.java index a4f063010..9ab1fb368 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoInterm.java index 853961dc9..571b78131 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoMV.java index 5fec8f275..81782fd6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoRRA.java index 0baa51429..06f3b632d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoSimples.java index ba9383bd2..4bead16ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TItensRemunRpps.java index c63ecf5c7..d07d57a53 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TLocalTrabGeral.java index 8a043cffa..0eb24bb62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNascimento.java index 07369862d..5af89fffd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNovaValidade.java index a29a24407..6ea6e3e0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TProcJudTrab.java index d638c0ac2..8a1afa9c7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TRemuneracao.java index e91d4e159..1b86f4b32 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSexo.java index 76c942af7..8803d2a98 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSim.java index 32d2ef19a..6cd6012bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSimNao.java index 414ddd1e8..d6d48b672 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConv.java index 5d10415c9..12e1f3b8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConvFGTS.java index a5e9d62c5..854062060 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSUf.java index cb18ce262..b8e97a02b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSucessaoVinc.java index 90fbb3ab0..4c6aa73c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TTreiCap.java index a74d71dbf..7624941f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformType.java index 180fad34e..965882a87 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformsType.java index 171210405..292a81953 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509DataType.java index af4e4934c..a87cabed8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509IssuerSerialType.java index 2d8ef8028..544674e14 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/package-info.java index 5656b93ca..32aadc593 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/pgtos/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:35 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtPgtos/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/CanonicalizationMethodType.java index cfb9ac635..5be767a14 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DSAKeyValueType.java index 091db2e4f..4005c32ae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DigestMethodType.java index 1623d4c91..80355763e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ESocial.java index 34d317b0b..c12114c02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -165,7 +165,7 @@ * <element name="indCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indNatAtiv" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indMotDeslig" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * <element name="infoCompl" minOccurs="0"> @@ -245,7 +245,7 @@ * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> @@ -326,7 +326,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * </sequence> @@ -364,7 +364,14 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="anoBase" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codTercs"/> + * <element name="anoBase"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> + * <pattern value="\d{4}"/> + * <minInclusive value="1900"/> + * </restriction> + * </simpleType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -661,7 +668,7 @@ public void setSignature(SignatureType value) { * <element name="indCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indNatAtiv" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indMotDeslig" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * <element name="infoCompl" minOccurs="0"> @@ -741,7 +748,7 @@ public void setSignature(SignatureType value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> @@ -822,7 +829,7 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * </sequence> @@ -860,7 +867,14 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="anoBase" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codTercs"/> + * <element name="anoBase"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> + * <pattern value="\d{4}"/> + * <minInclusive value="1900"/> + * </restriction> + * </simpleType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -1322,7 +1336,7 @@ public void setNrInsc(String value) { * <element name="indCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indNatAtiv" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indMotDeslig" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * <element name="infoCompl" minOccurs="0"> @@ -1402,7 +1416,7 @@ public void setNrInsc(String value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> @@ -1483,7 +1497,7 @@ public void setNrInsc(String value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * </sequence> @@ -1521,7 +1535,14 @@ public void setNrInsc(String value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="anoBase" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codTercs"/> + * <element name="anoBase"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> + * <pattern value="\d{4}"/> + * <minInclusive value="1900"/> + * </restriction> + * </simpleType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -1759,7 +1780,7 @@ public List getInfoContr() { * <element name="indCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indNatAtiv" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> * <element name="indMotDeslig" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_sim_nao"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * <element name="infoCompl" minOccurs="0"> @@ -1839,7 +1860,7 @@ public List getInfoContr() { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> @@ -1920,7 +1941,7 @@ public List getInfoContr() { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * </sequence> @@ -1958,7 +1979,14 @@ public List getInfoContr() { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="anoBase" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codTercs"/> + * <element name="anoBase"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> + * <pattern value="\d{4}"/> + * <minInclusive value="1900"/> + * </restriction> + * </simpleType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -2461,7 +2489,14 @@ public void setIdeEstab(ESocial.EvtProcTrab.IdeTrab.InfoContr.IdeEstab value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="anoBase" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codTercs"/> + * <element name="anoBase"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> + * <pattern value="\d{4}"/> + * <minInclusive value="1900"/> + * </restriction> + * </simpleType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -2646,7 +2681,14 @@ public void setInfoVlr(ESocial.EvtProcTrab.IdeTrab.InfoContr.IdeEstab.InfoVlr va * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="anoBase" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codTercs"/> + * <element name="anoBase"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> + * <pattern value="\d{4}"/> + * <minInclusive value="1900"/> + * </restriction> + * </simpleType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -2924,7 +2966,14 @@ public List g * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="anoBase" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codTercs"/> + * <element name="anoBase"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> + * <pattern value="\d{4}"/> + * <minInclusive value="1900"/> + * </restriction> + * </simpleType> + * </element> * </sequence> * </restriction> * </complexContent> @@ -2940,17 +2989,17 @@ public List g public static class Abono { @XmlElement(required = true) - protected String anoBase; + protected BigInteger anoBase; /** * Gets the value of the anoBase property. * * @return * possible object is - * {@link String } + * {@link BigInteger } * */ - public String getAnoBase() { + public BigInteger getAnoBase() { return anoBase; } @@ -2959,10 +3008,10 @@ public String getAnoBase() { * * @param value * allowed object is - * {@link String } + * {@link BigInteger } * */ - public void setAnoBase(String value) { + public void setAnoBase(BigInteger value) { this.anoBase = value; } @@ -3593,7 +3642,7 @@ public void setVrBcFGTSDecAnt(BigDecimal value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> @@ -3957,7 +4006,7 @@ public void setMtvDesligTSV(String value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> @@ -4611,7 +4660,7 @@ public void setObservacao(String value) { * </restriction> * </simpleType> * </element> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtTransf" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> @@ -4984,7 +5033,7 @@ public void setDtMudCategAtiv(XMLGregorianCalendar value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matUnic" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * <element name="dtInicio" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * </sequence> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyInfoType.java index f3d4cbf19..dd9dc3a78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyValueType.java index 44449770d..8c6b85b4b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ManifestType.java index 28d3b7beb..06501a42e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectFactory.java index 260822f95..b024c3820 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.proctrab @@ -1107,39 +1107,48 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** @@ -1152,48 +1161,39 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectType.java index 0dde444fa..5da40e0de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/PGPDataType.java index 8a539cd6f..b51e9c9bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RSAKeyValueType.java index e790a17ff..b162f4e66 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ReferenceType.java index 37fac503e..42d014ce9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RetrievalMethodType.java index 2fb2fc2c7..e1003922d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SPKIDataType.java index 6784caf78..5b01b4126 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureMethodType.java index b9a040310..f9c7c2585 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertiesType.java index 8a8650c23..b09b925c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertyType.java index 0cd0f0105..e3a1aa63a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureType.java index 426e62e5f..d0e7ebd79 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureValueType.java index df4f380a8..19b1efdb9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignedInfoType.java index 03bd354e1..0dd284993 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAlvaraJudicial.java index 02afe8dcf..b2c2db188 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAprend.java index cb7d23a58..9a2cfdab3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TContato.java index 8e4dc8919..2bdefad30 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReemb.java index e079c8c64..3980d3da8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReembTot.java index 5b09ee528..3114051fe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoBrasil.java index df22e095e..1217107af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoExterior.java index d9d6fe297..104948164 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/THorContratual.java index 921a7887b..249230c52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeBeneficio.java index 544e118ea..de0b0925c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregador.java index deaa07ae7..54741a367 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorCnpj.java index 172fc330a..5c0d4715e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorExclusao.java index c748bd517..b79c74377 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTab.java index 0ec6a3548..2cb6f26ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTabInicial.java index 06738c96f..e65765f62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusao.java index 87bd918b3..80c487b0f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusaoProcTrab.java index 1aee171b0..474660f58 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolha.java index bae1a6684..d32cc2377 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensal.java index 4e876430b..13487248d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensalPF.java index f43c1e53f..3b5a4a241 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaOpp.java index 7aef9cadb..34a02624e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaSemRetificacao.java index f64cae339..c5c66b907 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoContrib.java index d60255f65..5d339d8d6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoMensal.java index 1c2c28466..8eb19b349 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoTrab.java index 3669bfea4..798836399 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrab.java index 2f7986171..21562e28d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabAdmissao.java index b83fdf19d..7fabe2683 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabIndGuia.java index 7a1092b32..258d16a16 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabJud.java index 1090ea6fd..c9fac45bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabPJ.java index 5ff64b6b2..6731293a1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeTrabSemVinculo.java index 2ea8c3c92..914f1be6b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculo.java index 9dfb42294..3506a3a83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoBaixa.java index 8044fbc38..16adda38c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoSst.java index 02739a6cb..112354c99 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoEstagiario.java index 259dbbb61..c5a008133 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoInterm.java index 26012e31c..fa863cd48 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoMV.java index 3d8b7398b..ec1352356 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoRRA.java index 48087902d..df92ae9da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoSimples.java index ccb3cb216..7e22a23ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TItensRemunRpps.java index 2c8d248a9..976450c72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TLocalTrabGeral.java index 1ea7ccfff..f5feb2a9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNascimento.java index d183c068a..1f5e67ce3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNovaValidade.java index cbd1a8776..1e070f082 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TProcJudTrab.java index b017cf1e5..b54da3d3a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TRemuneracao.java index 022911334..e5d2d0ae4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSexo.java index 8c591bed6..16a4bd0de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSim.java index dd2651fcd..8e7715a5c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSimNao.java index 8d1bea964..3e76dfbb5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConv.java index c1288d27a..0666d9495 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConvFGTS.java index 0d2ba1023..a5965a083 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSUf.java index b17d9601e..b90ebfde6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSucessaoVinc.java index 85f0c40cb..4034a7781 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TTreiCap.java index ce53d32e2..3c2c6b93c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformType.java index 5dea67eb2..d97ab7e96 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformsType.java index b55290941..cb44527f3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509DataType.java index b729841da..2dd6fef74 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -81,12 +81,12 @@ public class X509DataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509IssuerSerialType.java index 08566563a..99306b5a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/package-info.java index 15775314f..77dea9af5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/proctrab/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:13 PM BRT +// Generated on: 2024.08.02 at 09:10:37 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtProcTrab/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/CanonicalizationMethodType.java index 66bc0a6a0..6e02fb4de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DSAKeyValueType.java index d28a0a6e9..4e21f396d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DigestMethodType.java index f7a37bbde..26544f792 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ESocial.java index 0ef9c5d37..f113b0d40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyInfoType.java index 18b1f6cd7..978c11111 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyValueType.java index 254dacac8..6ef276cdf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ManifestType.java index 6a381b2fc..e219ece92 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectFactory.java index 6061d1428..1c5ef444d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.reabreevper @@ -899,30 +899,12 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -971,21 +953,39 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectType.java index be5548db9..cad667420 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/PGPDataType.java index ddb9cdf42..db465446e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RSAKeyValueType.java index 22f7c4432..f7fa83019 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ReferenceType.java index b8f217dce..5c8b8cbf3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RetrievalMethodType.java index 1bb7b6b83..201a41078 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SPKIDataType.java index 55b306bc1..2daa1b314 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureMethodType.java index 2975cbbbc..78579cbbe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertiesType.java index 54f3e46f9..343c49894 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertyType.java index 2e610f41b..17ccdfcd3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureType.java index b5f618bb8..7b12e20e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureValueType.java index 1b160baab..3a188f55f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignedInfoType.java index 68f6c40bc..e3ff3ecb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAlvaraJudicial.java index 1ed83b58d..18dc5e6a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAprend.java index 08bfaa3e9..56b3b8438 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TContato.java index bf1dbab88..dd5616e43 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReemb.java index 6816e4e3c..bd28afac4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReembTot.java index c1528e55f..38f9b0a83 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoBrasil.java index d57de8cb0..955771cb7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoExterior.java index f3f050dec..fefcc7820 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/THorContratual.java index 6d40f14a5..46a13f3e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeBeneficio.java index db4d74d6b..ecf01efc6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregador.java index 93c95432b..098b1c581 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorCnpj.java index 2ffc28de5..614e8894f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorExclusao.java index 66db42194..6f6c3326c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTab.java index 486e6e70d..0e5e36412 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTabInicial.java index 58bc91b8d..64eeba030 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusao.java index 26ef01e6a..5b2bc6049 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusaoProcTrab.java index 96859fb13..c9af1a226 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolha.java index 79bb83112..ce0e908dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensal.java index 5c076429e..adee52a0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensalPF.java index 390c34024..3a960928a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaOpp.java index bb8748735..b09504f87 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaSemRetificacao.java index a0e253734..bf7ca3b12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoContrib.java index 1a5d81abb..f8c28ccd7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoMensal.java index e5de19ea3..165bcd39e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoTrab.java index 6491b3ed3..8d534aeef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrab.java index 5ad540510..d959bcd63 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabAdmissao.java index e307ea224..2181cb23f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabIndGuia.java index 06971704d..4c4f1f982 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabJud.java index 9547a1602..434c0d759 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabPJ.java index 2c25a7d5d..327161366 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeTrabSemVinculo.java index ede900637..b5754d355 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculo.java index 399510d70..9320cb7cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoBaixa.java index 6fdb40dec..c730322cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoSst.java index 708e8b8d4..a89d6ce58 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoEstagiario.java index dec7c6924..5048d0751 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoInterm.java index f19c45463..286fe3bbc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoMV.java index a56769aaf..d884deef1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoRRA.java index 4578d547e..3ba000f3f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoSimples.java index 6b33bedda..62c94c3f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TItensRemunRpps.java index b83ed3df4..9d78f6d5f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TLocalTrabGeral.java index cb4692700..0385e5e64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNascimento.java index d630d8506..787537bbc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNovaValidade.java index 71ec504a7..6567bae59 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TProcJudTrab.java index 51146d934..63e624f79 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TRemuneracao.java index 91a1153af..054e9d665 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSexo.java index 66a80ce1d..2159331c7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSim.java index aa53a1c89..045e8586c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSimNao.java index a8dfdd0ba..1f37202cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConv.java index dbc73db07..33e110264 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConvFGTS.java index bdf458b14..51aa523b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSUf.java index bd2d478f2..5b112bc62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSucessaoVinc.java index 8dba6c6a5..1405eb3e8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TTreiCap.java index e601389cc..1f90f1202 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformType.java index b6a63141b..ddf01113b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformsType.java index 22f7e02a3..d124ef6cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509DataType.java index 11d8a3835..b9a7a8535 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509IssuerSerialType.java index ce6bca3db..b1b1aeaf7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/package-info.java index 27e3a9ec5..06fe16e26 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reabreevper/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:39 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtReabreEvPer/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/CanonicalizationMethodType.java index 54762e166..77be8ebc9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DSAKeyValueType.java index 51f553f6c..4584f37ec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DigestMethodType.java index 6be30cbeb..4c71541bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link String } - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ESocial.java index c627f8c3c..d60066e62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyInfoType.java index 5869c5a85..8baf586a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link String } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyValueType.java index e618f36be..0a55c3830 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link Object } + * {@link String } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ManifestType.java index 255466700..0dadba39e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectFactory.java index 92a5d48c1..57918b661 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -56,15 +56,15 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** @@ -906,15 +906,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -960,15 +951,6 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -987,6 +969,24 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectType.java index 579288e76..0d7d67296 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link String } - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/PGPDataType.java index fbda1415e..4670c4530 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -90,8 +90,8 @@ public class PGPDataType { * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RSAKeyValueType.java index efcb4b211..23bdbfbfb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ReferenceType.java index 323c81544..d93a9e9d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RetrievalMethodType.java index fa953d41b..2bd12e27b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SPKIDataType.java index 6985c5be6..821bc64f0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -68,8 +68,8 @@ public class SPKIDataType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureMethodType.java index 6582d6ea7..e9846f567 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertiesType.java index 462e839a6..979ca3e34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertyType.java index 37ef7df06..42342d010 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link String } - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureType.java index 2a524e43f..0752cdda8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureValueType.java index bd43bed39..cc432946f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignedInfoType.java index 1f02b20d9..1f170a8f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAlvaraJudicial.java index 5499ffed3..7ca1c1d2a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAprend.java index 71302e352..018a0d18c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TContato.java index d04e24825..51da153f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReemb.java index 0248e8cdb..32d9eee04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReembTot.java index fbe1eaf84..81e11174d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoBrasil.java index 4133c8f40..1713ea073 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoExterior.java index f12a43898..44b509148 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/THorContratual.java index 685629b29..2bcab5cde 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeBeneficio.java index 427c5549d..271a6c464 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregador.java index 77d0b0845..25812b2d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorCnpj.java index ee5095cfe..abd11088b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorExclusao.java index 5bd87ff96..4788d7917 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTab.java index a4137b889..5e2c068d7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTabInicial.java index e328473e4..c5f72d04a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusao.java index 8bb2b0785..b4f4eb2cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusaoProcTrab.java index 24ed173ab..b68e34871 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolha.java index f5055f73c..58fd601f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensal.java index 2126b3382..764ea96e0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensalPF.java index a60f676a4..19f37d16e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaOpp.java index e52296b9e..92efc7fde 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaSemRetificacao.java index 232d4910b..d00821c8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoContrib.java index 43f0a5b93..06800df60 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoMensal.java index 9c204c0ae..b1ad8bc4d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoTrab.java index 62f25e69f..4ae0cba0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrab.java index f034e2c79..65af31688 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabAdmissao.java index 3f8cfb60a..7c7c05b62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabIndGuia.java index e51f3bd57..419655fa7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabJud.java index 43f55a729..388b02b11 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabPJ.java index c3acb4c76..58d4a6d3a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeTrabSemVinculo.java index 3df45fca5..373fab4fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculo.java index 75ff141cc..79fe3d59a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoBaixa.java index aaaeaa4cc..881342a23 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoSst.java index 1d6c998be..518cc586a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoEstagiario.java index 144a1be9f..6b486549b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoInterm.java index 39a32a0bf..c87b8a863 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoMV.java index 26feb6d8d..b68cd7cc7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoRRA.java index 9732655e7..d98049172 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoSimples.java index 5a3382049..b14e9c79b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TItensRemunRpps.java index 7defd21fa..12b09f0a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TLocalTrabGeral.java index ec4aec621..98d55c246 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNascimento.java index 6327661f5..6744ac25a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNovaValidade.java index f1c8f90f0..e90236805 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TProcJudTrab.java index 5b025e3d5..69cd1af34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TRemuneracao.java index b1924508d..01e29fc18 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSexo.java index b20a8a2e5..5ee6db854 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSim.java index 134e2ebc5..4eaa289a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSimNao.java index 90795f2ab..5b79effda 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConv.java index 1e8fe25cc..a18819bd4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConvFGTS.java index 43bfb87e8..7944a917a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSUf.java index 4fd122e5b..f62fb127a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSucessaoVinc.java index 99cf01932..16c23b295 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TTreiCap.java index 29cafa86c..f1b68583f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformType.java index 449796be7..3027989eb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link String } * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformsType.java index 3a1cec3a8..8a9dbcd57 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509DataType.java index 8097477f7..88a067d18 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509IssuerSerialType.java index d61643903..b772bdf8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/package-info.java index f59fd0d21..ab6b6e069 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reativben/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:14 PM BRT +// Generated on: 2024.08.02 at 09:10:40 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtReativBen/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/CanonicalizationMethodType.java index 0cba9eb63..675d14cd4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DSAKeyValueType.java index f3c2616e6..a4b3f4535 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DigestMethodType.java index cc14fffc5..aa1491647 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ESocial.java index 960e336b5..1e32695c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyInfoType.java index 5b520b3c0..df08fe34a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyValueType.java index ed1ed3c14..5bac5f7e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ManifestType.java index 17ef8e2fd..4f5f8d0e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectFactory.java index 435bbd416..63b18044e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.reintegr @@ -906,15 +906,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -933,6 +924,33 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -978,22 +996,4 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectType.java index d287a97c9..2a264a83c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/PGPDataType.java index 0ef66907e..f9495bbae 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RSAKeyValueType.java index bd7a689ae..11afc5a09 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ReferenceType.java index 31684d682..02834d258 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RetrievalMethodType.java index a65d35819..e6d9f1602 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SPKIDataType.java index fe5e85645..0d4a5fb89 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureMethodType.java index 75a5f5da4..500572076 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertiesType.java index 27adfe789..c80d003af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertyType.java index 8859ed4f7..72548533a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureType.java index 423850535..703df1ed1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureValueType.java index 91b097828..b68de9a60 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignedInfoType.java index 31c893b9e..da8877cf3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAlvaraJudicial.java index 1689ceb29..53adc3da0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAprend.java index bcdcf1c10..6f38e61f0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TContato.java index 2958f3828..3c1549b12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReemb.java index 69ffb903e..d3c8d18aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReembTot.java index a51e422d2..9af176125 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoBrasil.java index 0fbed48f3..813cf1dd4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoExterior.java index 35a8bc632..e41d60b04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/THorContratual.java index 32c26541f..4f09a3558 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeBeneficio.java index 12f83ca6a..55a1ee687 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregador.java index f638c3e00..ac0f1f594 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorCnpj.java index b5bac48e8..02597e9f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorExclusao.java index 951f8533b..1c2256fb0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTab.java index a7f299676..42c669f0f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTabInicial.java index e626725dd..ecfea372b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusao.java index 0cc9c0e8d..ac414ebff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusaoProcTrab.java index 8471dfcb0..08a68443c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolha.java index c4f8bc2da..1e4833d18 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensal.java index bcf63af74..e898a8923 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensalPF.java index cb0fe1e0d..0ced69cb5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaOpp.java index 1e193bdbe..0b1d706ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaSemRetificacao.java index 79fe0e9a9..1a4154f7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoContrib.java index 9d3d518da..6f93a45c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoMensal.java index fecc13b5a..78ce5be5a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoTrab.java index 60e58d4b2..b7ae8ec9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrab.java index fdd456bac..b4cae7b80 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabAdmissao.java index 07bdf7d43..0cb445b8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabIndGuia.java index 4f1d59c41..3c280e27d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabJud.java index 6b6e75c50..a3bfae1ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabPJ.java index d8c461caa..5e965b2fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeTrabSemVinculo.java index 32f9bee9e..0750bf061 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculo.java index 4b73ac280..c378f1cbd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoBaixa.java index 02cdb60b1..87467ded7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoSst.java index 5cb689d12..373ff52bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoEstagiario.java index 3666ebd41..152e09171 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoInterm.java index 2af46fd26..41aad8281 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoMV.java index 6f7b3f966..e7a07e36a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoRRA.java index fa618a01c..54a198db5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoSimples.java index b9194fe4d..175633401 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TItensRemunRpps.java index 78c083d90..d347b9fb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TLocalTrabGeral.java index bcdfb06e4..1860d1fd4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNascimento.java index c9fffabf8..b6ba8a56a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNovaValidade.java index 7edc604fd..465d9396a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TProcJudTrab.java index c8ddc4ebc..fdda4e0aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TRemuneracao.java index 311838579..cf345ef65 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSexo.java index 395488641..d656185db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSim.java index ae6ae0839..5b5398977 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSimNao.java index 75137f482..c263d48cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConv.java index d455ec5b6..0f6389cab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConvFGTS.java index 3d1a42960..1c3d1ba9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSUf.java index b1ad95604..b16a03028 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSucessaoVinc.java index 063eaffac..743dacdb2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TTreiCap.java index 8605d4cd3..c3b770ec0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformType.java index cc2bd84db..4dcdc3cd1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformsType.java index 6353f3da9..ba4aa234d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509DataType.java index 7e58fb52f..d1b6dca7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,12 +80,12 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509IssuerSerialType.java index a6874c16a..9f875a439 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/package-info.java index b56f9862d..1a814844c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/reintegr/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:41 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtReintegr/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/CanonicalizationMethodType.java index 4cd2bea1b..614d6a2f7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DSAKeyValueType.java index 7d976c34c..601100f71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DigestMethodType.java index 876838259..253b23a19 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } * {@link Object } + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ESocial.java index 672f49061..15ac13078 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -135,7 +135,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -193,7 +193,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -422,7 +422,7 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -480,7 +480,7 @@ public void setSignature(SignatureType value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -717,7 +717,7 @@ public void setId(String value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -775,7 +775,7 @@ public void setId(String value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -1170,7 +1170,7 @@ public void setQtdDiasTrab(Byte value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -1280,7 +1280,7 @@ public List getIdeADC() { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -1479,7 +1479,7 @@ public List getIdePeriodo() * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -1585,7 +1585,7 @@ public List get * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -1723,7 +1723,7 @@ public List * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -1886,7 +1886,7 @@ public void setInfoAgNocivo(TInfoAgNocivo value) { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -1966,7 +1966,7 @@ public List getIdeEstabLot() { * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> @@ -2130,7 +2130,7 @@ public List getRemu * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="indSimples" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_indSimples" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_itensRemun" maxOccurs="200"/> * <element name="infoAgNocivo" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}T_infoAgNocivo" minOccurs="0"/> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyInfoType.java index 0c3fe6d56..6c94ebbaf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyValueType.java index dff5940b1..789b04d22 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Element } - * {@link String } * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ManifestType.java index 8c1d1413f..0d9534d11 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectFactory.java index 5a175e83c..4c2cf2d09 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.remun @@ -1035,93 +1035,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectType.java index bd4ec3add..6f2546616 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } * {@link Object } + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/PGPDataType.java index ed01f4341..a13a5f047 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RSAKeyValueType.java index 3d2c8d5dd..299c43ca3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ReferenceType.java index e8aa586c2..15e4c095d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RetrievalMethodType.java index f6ea2d3d0..7fd9c02c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SPKIDataType.java index 640edcab9..e7491dc2d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureMethodType.java index 62671ca62..ff74bf8f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -75,8 +75,8 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertiesType.java index eec9712aa..6733ecba5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertyType.java index b4f04252e..b18693ed6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } * {@link Object } + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureType.java index 537a5a809..780016e04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureValueType.java index 8c677d776..36aa7dafa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignedInfoType.java index 16028e9a6..793db9c52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAlvaraJudicial.java index 3755895e8..276294aa1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAprend.java index 07fc2cb84..280b8abd9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TContato.java index d17124cca..f3d5c8e01 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReemb.java index 01df259c5..605fc854f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReembTot.java index 790f68714..deef21f31 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoBrasil.java index 76d5e98e0..d3599b758 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoExterior.java index 1fc829748..e3e77daf0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/THorContratual.java index 2da34424b..ba9819f43 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeBeneficio.java index eb43a2971..4f16373b3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregador.java index ca2654472..153cb90b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorCnpj.java index 387e81fcf..ec90e6c47 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorExclusao.java index 96660d61d..b3ead1296 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTab.java index b919d14e0..e0973705d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTabInicial.java index 00c9270f7..d67a38214 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusao.java index b3bb0cf26..76729c393 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusaoProcTrab.java index e28d289cc..2e6f73963 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolha.java index 15995d59f..6a6537832 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensal.java index 6647b022d..e052362cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensalPF.java index 415573769..a4302327a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaOpp.java index fcc65d617..975b8a0e3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaSemRetificacao.java index bb17fc14c..bf248c9b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoContrib.java index 67c080864..01e5286a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoMensal.java index 8588c0386..6002d2d09 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoTrab.java index 8e3c4a000..694b875cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrab.java index c14e3ee52..7c4e55df6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabAdmissao.java index ea937b88a..f9f3386c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabIndGuia.java index a7b9f3533..9cd35ecc0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabJud.java index e2ae7a945..10e227d89 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabPJ.java index 452b31d93..96d3af62f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeTrabSemVinculo.java index ef832808e..b6f957370 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculo.java index 1a5841394..f6167045f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoBaixa.java index 431b2c9f7..fdd749b1f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoSst.java index 2d2cd3ee2..885e01a01 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoAgNocivo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoAgNocivo.java index 77b72c150..424e35f8e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoAgNocivo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoAgNocivo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoEstagiario.java index db47fcc3b..022aace99 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoInterm.java index 207d175fb..a66b67209 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoMV.java index aa7724200..37acdd045 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoRRA.java index 44b5712b5..afc6c338d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoSimples.java index 5c9fe22bc..0d7c61d71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemun.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemun.java index 1aeafb768..233e3607c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemun.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemun.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemunRpps.java index 494034dae..f6f71c3c0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TLocalTrabGeral.java index d83a25142..937b7b3c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNascimento.java index b150b97f9..4177b1c7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNovaValidade.java index 47755ba3d..772635cce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TProcJudTrab.java index 8b3158594..02dfcabd4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TRemuneracao.java index 6e026ebfc..f53f1d321 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSexo.java index 2eec65bf7..22688cf78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSim.java index 117815ff0..b34a6eaf5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSimNao.java index 546fbde90..c877c41a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConv.java index 4ee5a9fb1..58bee240c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConvFGTS.java index 9d08dd3ec..2330b2352 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSUf.java index 615873b19..190af3486 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSucessaoVinc.java index be3e40385..825e636be 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TTreiCap.java index 225c06225..9bd1eb500 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformType.java index f484d3824..79be8241b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformsType.java index 5adb1e99c..d1f896e78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509DataType.java index 0bde7eca1..dc837d44f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @@ -53,10 +53,10 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509IssuerSerialType.java index 795d88470..801b3cb08 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/package-info.java index 24c68773a..c6171d947 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/remun/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:15 PM BRT +// Generated on: 2024.08.02 at 09:10:43 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtRemun/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/CanonicalizationMethodType.java index 330e2eeaa..51665f00d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DSAKeyValueType.java index da58965c0..95622897b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DigestMethodType.java index 105eed585..5462044b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ESocial.java index 613ff05e7..0ac725a8d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyInfoType.java index 396a1587a..edbff4db2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link Element } - * {@link String } * {@link Object } + * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyValueType.java index 6b2a16b20..5c051ceef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,9 +75,9 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Object } * {@link Element } * {@link String } - * {@link Object } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ManifestType.java index 0c52da65e..6247544fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectFactory.java index 807a027dc..4bcd9b428 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.rmnrpps @@ -978,6 +978,33 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1032,24 +1059,6 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * @@ -1059,13 +1068,4 @@ public JAXBElement createTransformTypeXPath(String value) { return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectType.java index 7e0057b31..7586d7dd5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/PGPDataType.java index 558f05e2a..b8add0a39 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } - * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RSAKeyValueType.java index fc7cdbe8e..0853b5597 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ReferenceType.java index b5cbf3fdb..b941f4d01 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RetrievalMethodType.java index 1a8071f91..164a7f399 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SPKIDataType.java index 96c99d5b8..f86f761ec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureMethodType.java index 01b3dd9ec..4c3b7b3f9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertiesType.java index 390400f22..bfa1b7aa1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertyType.java index daeee5324..22286c50f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureType.java index 252884513..3a87d601d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureValueType.java index f4bfcd205..c7701ec27 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignedInfoType.java index 144403551..5f61c71c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAlvaraJudicial.java index 638d4f27a..f7e1bed29 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAprend.java index 701641fb0..82d7ae8dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TContato.java index f01fc8c4e..5fcc68224 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReemb.java index 4e958dc87..30a860b8e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReembTot.java index f0f235721..3a8c75451 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoBrasil.java index be0916a4b..fa80a1ef0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoExterior.java index 1305e4cc1..ee4917762 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/THorContratual.java index 2be17d6a6..37283ff86 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeBeneficio.java index d7a85d584..c787801ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregador.java index c3e0875cc..f714de123 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorCnpj.java index d9198e7c5..e925fd2bf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorExclusao.java index 87c8d6ec0..cbddac3dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTab.java index b6a16e581..0e754337c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTabInicial.java index afb48a38e..a24853bc9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusao.java index df12f9d66..67b60a21f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusaoProcTrab.java index 1b3f00e76..3efdbcb5d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolha.java index 16cde0031..796fd3435 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensal.java index 25ea44541..17324b641 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensalPF.java index a0cf5cf8b..c973726a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaOpp.java index 1e0ee05da..3d25a73d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaSemRetificacao.java index 3faaaef39..74a36837c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoContrib.java index e165c7d51..957ea7bc0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoMensal.java index 7cf267e15..7e91b1eb4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoTrab.java index 112787c12..5516a674c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrab.java index 9099940bb..ca9f42f86 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabAdmissao.java index 59d8a994b..d0c35ad02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabIndGuia.java index 8379db1b4..6237c8492 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabJud.java index 555a2ea74..1b6e29c81 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabPJ.java index bb25fed1f..dc9fbe541 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeTrabSemVinculo.java index 63fadab34..27c6502af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculo.java index 786c38460..719dfd9e0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoBaixa.java index 3d5d8d034..ae24f73e0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoSst.java index 022948906..b1a9a3509 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoEstagiario.java index c28e00228..cd3ab5565 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoInterm.java index 016b2cda1..adc768c59 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoMV.java index 153084252..2a903c4b2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoRRA.java index c391cc7c7..e782cbe9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoSimples.java index 3d2c5a07f..1266213f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TItensRemunRpps.java index 3bf442450..ea8f73e86 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TLocalTrabGeral.java index 296930224..ad3b8122b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNascimento.java index 27e621165..63b3126d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNovaValidade.java index a42a2fc2b..0c12a5949 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TProcJudTrab.java index 2b133e0a0..45b37b9a1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemunPer.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemunPer.java index cca32a142..01fe93550 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemunPer.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemunPer.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -26,7 +26,7 @@ * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="itensRemun" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}T_itensRemun_rpps" maxOccurs="200"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemuneracao.java index da68d9f07..b4ec47d29 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSexo.java index 38b5a96c5..6ef981e36 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSim.java index 99a6f1509..3f6e63587 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSimNao.java index 8bc39cfda..3eb8aa56a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConv.java index 88fe84c81..ab183a9f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConvFGTS.java index 1e6db5133..b15e43e8a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSUf.java index 04824f119..d2f22e6f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSucessaoVinc.java index 7102db7e0..7c4174855 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TTreiCap.java index 6331e8a04..b09d0553a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformType.java index 5c2066462..00a219d3c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link Element } * {@link String } - * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformsType.java index f6dea5a87..f2f2c2921 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509DataType.java index a1f0e3e59..87cb8fff7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } - * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509IssuerSerialType.java index eb71603c7..d373d617d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/package-info.java index 2126635f8..3012df13a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/rmnrpps/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:45 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtRmnRPPS/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/CanonicalizationMethodType.java index 6dce12a76..a9743483a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DSAKeyValueType.java index 23733beb4..500f76816 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DigestMethodType.java index 2689b27d3..58200aea6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ESocial.java index 5b1f0994d..e1f77a6ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyInfoType.java index 4577598cc..187bc6b88 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -61,12 +61,12 @@ public class KeyInfoType { @XmlElementRefs({ @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyValueType.java index 5c8debf44..3783885de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ManifestType.java index 4cb592add..9719139c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectFactory.java index 8deb2ae6b..10333c7c5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -56,9 +56,7 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); @@ -66,6 +64,8 @@ public class ObjectFactory { private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.tabestab @@ -1018,15 +1018,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -1036,15 +1027,6 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1108,4 +1090,22 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectType.java index 08de059eb..d34c3d303 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/PGPDataType.java index 9055ab85f..7dd7b560f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -90,8 +90,8 @@ public class PGPDataType { * Objects of the following type(s) are allowed in the list * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RSAKeyValueType.java index e5da1141d..d699b02bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ReferenceType.java index 0a40a5298..7569c3a67 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RetrievalMethodType.java index 656c486a0..65538b949 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SPKIDataType.java index a22bf941b..aeebb32cf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureMethodType.java index 768b0c552..033789936 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertiesType.java index bd26d7bfe..10f9cc7e0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertyType.java index 5a6711240..ed247a5e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureType.java index df1375e50..c7a4f9ff9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureValueType.java index b5029488a..232151f02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignedInfoType.java index 6815e8ced..aa4e516db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAlvaraJudicial.java index 004edd649..e39610c4f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAprend.java index 989217e58..cfd391efa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TContato.java index dccc151fa..d155a4094 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDadosEstab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDadosEstab.java index 807916e86..862054795 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDadosEstab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDadosEstab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReemb.java index 507abf14a..7fd4ecdb6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReembTot.java index 108b5a171..28310bffa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoBrasil.java index 0cabe78aa..2a9223d46 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoExterior.java index 69abe6b40..0b9ace02f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/THorContratual.java index 1748990ae..d72d6b654 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeBeneficio.java index 76f4de798..0e46f0f7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregador.java index dc48bcd72..e16d6857b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorCnpj.java index 1d2a6af79..5cc25dbd6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorExclusao.java index 5a86a6f1a..8c0a78be3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEstab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEstab.java index eb78c997e..288ff9fa9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEstab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEstab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTab.java index 4dde40e15..cc3f8349f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTabInicial.java index 4d6bf9930..90370de78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusao.java index 7118587b7..97e3e01dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusaoProcTrab.java index be184828d..f265338db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolha.java index bd1f97464..501624185 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensal.java index 9c853d50b..3c07756ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensalPF.java index 9363343e2..a59640574 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaOpp.java index afd23f46b..853484431 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaSemRetificacao.java index 2ef6f146d..33f57992f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoContrib.java index e2df0386d..ba096019e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoMensal.java index 80933b60e..d53c29dec 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoTrab.java index 91fc55091..73f4ecfed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrab.java index 6d5d23e9a..adbec393a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabAdmissao.java index 46a07409a..7f2c5d6aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabIndGuia.java index 4b22ad11f..13630e53c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabJud.java index 9fffa1ef3..1c6c88e52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabPJ.java index 3c0e9eb9f..5a6dc2375 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeTrabSemVinculo.java index e849f4de3..642cce4a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculo.java index 9c9ee1847..4daf37a90 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoBaixa.java index 4923f26ce..26ad1518a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoSst.java index 5b965c0cc..8c41ad983 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoEstagiario.java index 880919b3f..3782bb04c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoInterm.java index 9c2379bd2..b647b1694 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoMV.java index 20feffe63..b75f6568f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoRRA.java index a1cfbe1aa..ce978dfe4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoSimples.java index 929c41d42..a8121b6fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TItensRemunRpps.java index e9c825497..12a8c50a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TLocalTrabGeral.java index 65737360f..651700580 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNascimento.java index 7af7c5028..5490935b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNovaValidade.java index fa08c2adc..30ed3ad8c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TProcJudTrab.java index d2e56a4d2..05c6595d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TRemuneracao.java index d65bc488c..68cb4c416 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSexo.java index 32b2ec18e..0ab8fec90 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSim.java index eb42564e6..ff7c317e1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSimNao.java index 77135573c..e57c4c741 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConv.java index 7975b3892..028e6c3fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConvFGTS.java index e83b97b6c..d17e1a2de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSUf.java index 0d76d193a..dd7653a2e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSucessaoVinc.java index 9652b0dc8..15c80713c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TTreiCap.java index 624e56370..47e5e9590 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformType.java index cd7431bbb..1a294e441 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformsType.java index 463d9ef0b..c054aec0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509DataType.java index 27ccebf43..2a1b86374 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @@ -54,10 +54,10 @@ public class X509DataType { @XmlElementRefs({ @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -81,12 +81,12 @@ public class X509DataType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509IssuerSerialType.java index 682b8cc4d..f62c7e315 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/package-info.java index 97324e965..ac2211d33 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabestab/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:47 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTabEstab/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/CanonicalizationMethodType.java index 588694964..8eb133c2b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DSAKeyValueType.java index 01b007d62..b4ad4c3d5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DigestMethodType.java index 8f9320478..2ad206f90 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -71,8 +71,8 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ESocial.java index 14fb9bc2a..2d1648a9f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyInfoType.java index beea4657d..f49ea9bab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -60,12 +60,12 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @@ -95,15 +95,15 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link Object } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyValueType.java index 74bf48fab..955f173d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ManifestType.java index 24a13d737..8e82049de 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectFactory.java index 8d05ddb61..235447e88 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -56,6 +56,7 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); @@ -63,7 +64,6 @@ public class ObjectFactory { private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); @@ -986,6 +986,15 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1049,15 +1058,6 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectType.java index 457036410..a346acd12 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -83,8 +83,8 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/PGPDataType.java index 28d6c9ff6..5cc86411a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RSAKeyValueType.java index 9955a1f59..a78f75889 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ReferenceType.java index 6e9b6b7f8..d8779c7ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RetrievalMethodType.java index 7054a3b26..bd336196d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SPKIDataType.java index 7b565030c..826ddc032 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureMethodType.java index 4617f704c..e162782ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertiesType.java index 230ba30c8..c0fa0e472 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertyType.java index 8dea124d1..028770886 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -80,8 +80,8 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureType.java index 2d6b5ac02..adce31559 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureValueType.java index ccb34076f..926743a0b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignedInfoType.java index fb0b8e718..4211441f7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAlvaraJudicial.java index 3ac7df3b9..026ad41c7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAprend.java index 22110a060..eaa258e72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TContato.java index 944c54d7f..029368dd1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDadosLotacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDadosLotacao.java index 321ef2121..521e97d4d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDadosLotacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDadosLotacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReemb.java index d5076d5d9..6d4e52609 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReembTot.java index 180a78973..a8171e66e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoBrasil.java index be0d15513..c60c0566f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoExterior.java index 9585fb12e..5a5c9d74e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/THorContratual.java index 6ad92ce1c..b4f03cd67 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeBeneficio.java index ddcaf6a4f..6ae785a52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregador.java index 3609bbb38..77b375668 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorCnpj.java index 053433699..d72ebf833 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorExclusao.java index c54976b1e..dbb59eae0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTab.java index 09c9c023e..0b89f0b94 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTabInicial.java index a91493648..7359b5a68 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusao.java index f982807f2..bf3e4a448 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusaoProcTrab.java index b12ee2ff1..2232d8827 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolha.java index 6c66679eb..2a78520a3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensal.java index 0ff286765..dcd965158 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensalPF.java index 2fa17edae..6568eda28 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaOpp.java index bb21b75ad..4cdbcc590 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaSemRetificacao.java index a2cc846d8..bf273400f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoContrib.java index 6b46f93a0..0777ec980 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoMensal.java index 988f2583d..4be40880c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoTrab.java index 65135c52e..b3f1d437a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrab.java index 98269e488..2cea72f71 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabAdmissao.java index 083c7bf19..a2ed325b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabIndGuia.java index b62910270..c54974265 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabJud.java index 3689b0f41..4d0592c4e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabPJ.java index 8413be7f7..7127ce6c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeLotacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeLotacao.java index 72082781e..0a65c0b0f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeLotacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeLotacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeTrabSemVinculo.java index 723d13d4d..840f6211f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculo.java index 649397f46..0336711bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoBaixa.java index a1fb54f64..88e72f0c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoSst.java index 26a219efc..b6b381cd6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoEstagiario.java index 24445d872..682c4341c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoInterm.java index bd7f70361..b82dc61ad 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoMV.java index 8936a5b09..601d42a62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoRRA.java index 7728e3b85..a7f630847 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoSimples.java index 7bf8bb2d4..801f79519 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TItensRemunRpps.java index 78584ebd7..e2266351a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TLocalTrabGeral.java index 2876e274a..3486d77dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNascimento.java index 2d5421f11..6a2754d48 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNovaValidade.java index b81929bc9..93c86d952 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TProcJudTrab.java index c76b1bff7..6d71608a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TRemuneracao.java index 7569b8f26..bb48f7692 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSexo.java index 911e77eb8..5d954a201 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSim.java index d2328c351..776bcd86a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSimNao.java index 701a615d2..b7a7e6bb9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConv.java index 55939934b..a19de8d39 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConvFGTS.java index ee64f3952..d8b65f527 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSUf.java index 2a921595e..5cd4039fd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSucessaoVinc.java index ff1907a8f..a23db8dc5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TTreiCap.java index 6d306c014..c3244fadd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformType.java index 772b33228..75f6ee92b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -75,9 +75,9 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformsType.java index 29345d9a4..5110dbbd3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509DataType.java index 43e7b3637..88c8c421d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509IssuerSerialType.java index 4a54f2aa6..072542b34 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/package-info.java index 9a2237dfc..e44551ef5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tablotacao/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:18 PM BRT +// Generated on: 2024.08.02 at 09:10:50 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTabLotacao/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/CanonicalizationMethodType.java index 413747684..36246d7e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DSAKeyValueType.java index 2c48abaa5..48bd5392c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DigestMethodType.java index ca573036e..47886b17b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link String } - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ESocial.java index dbaacf28a..77f7347aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyInfoType.java index caacc59b5..c4f5fd844 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link String } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyValueType.java index 5939ead1a..78f0f32ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } + * {@link String } * {@link Object } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link String } - * {@link Element } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ManifestType.java index e00473767..2e898e1ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectFactory.java index 568632930..489b8d101 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.tabprocesso @@ -962,33 +962,6 @@ public JAXBElement createSignatureProperty(SignaturePrope return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * @@ -1034,6 +1007,24 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + } + /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * @@ -1052,4 +1043,13 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + } + } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectType.java index 5e67721b8..ae3d4026b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link String } - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/PGPDataType.java index c22062148..0757b038b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RSAKeyValueType.java index b935ecb6a..34f4a3a8b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ReferenceType.java index fbf3db819..c19dacaf4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RetrievalMethodType.java index cf2ececfc..9c014b68b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SPKIDataType.java index 9163a4ad2..0c0d76f4e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureMethodType.java index fd02cfebe..2cc654d6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -75,8 +75,8 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} + * {@link String } * {@link Object } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertiesType.java index 970e5c815..48f400863 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertyType.java index 3450933a9..7243cf028 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link String } - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureType.java index 132ce9ace..dde39f454 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureValueType.java index dae59d121..864180780 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignedInfoType.java index e3b1a04dc..db3716228 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAlvaraJudicial.java index c1adb6fdb..d8110d304 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAprend.java index 1b956e4d7..b904f1b02 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TContato.java index 4f12af2c3..55217e65f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDadosProc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDadosProc.java index 6ee494c4c..b45f049e4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDadosProc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDadosProc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReemb.java index de8bb7f1f..ede2b2cb5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReembTot.java index 7d316eb29..02065d0b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoBrasil.java index 554afdaec..68b584816 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoExterior.java index 8af34491a..db6f28bce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/THorContratual.java index d7cec0901..7341f608f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeBeneficio.java index 8c8668768..1a428d452 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregador.java index e34a89de8..e43846564 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorCnpj.java index f0cf16c2f..254f308a9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorExclusao.java index e2e97951b..8a7c059f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTab.java index 07a290322..8c4bf2414 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTabInicial.java index 622879124..68be537a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusao.java index be3bd566b..7f5550b5f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusaoProcTrab.java index 12488797a..bdfa9b943 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolha.java index 6729e3989..9af167623 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensal.java index b78f435af..38287ce0f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensalPF.java index 7d2dcbb2c..89a1d6712 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaOpp.java index 1e3716105..267d56db3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaSemRetificacao.java index 67f248e77..4323fb411 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoContrib.java index a90707dfb..adccc4f04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoMensal.java index b6948367c..39c3df833 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoTrab.java index 005ff74d4..71dadb47f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrab.java index 22f4a421f..e7311c53a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabAdmissao.java index 013d9c428..651f2f88c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabIndGuia.java index d11e6e758..e69a0f3c2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabJud.java index 0e945f8a8..b357b9554 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabPJ.java index d8c498d66..0bbbf55ed 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeProcesso.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeProcesso.java index 38d8a461b..c873f27f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeProcesso.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeProcesso.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeTrabSemVinculo.java index b3fc1ce25..63061f9ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculo.java index e7bbbe08a..ee9114316 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoBaixa.java index 01c2b83a5..a847a0d70 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoSst.java index b8c7f69cf..3616affeb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoEstagiario.java index dc3f93170..cc900e9af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoInterm.java index f47e260b4..2fadda991 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoMV.java index 2482c5e38..6cbc193af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoRRA.java index 7a5c1894e..37d4d8484 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoSimples.java index ec2313ca6..1d5a353e9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TItensRemunRpps.java index c1bf60629..e16c8c4ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TLocalTrabGeral.java index 899c3851f..a66744fb8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNascimento.java index 9d5d51908..ece8305cc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNovaValidade.java index aa33b7749..c3f477885 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TProcJudTrab.java index 6de404422..9d5446d7b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TRemuneracao.java index 6ab9c1b39..a65272d14 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSexo.java index 987c0adff..5b77560d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSim.java index 1ddfe8a30..957e8834f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSimNao.java index 7b1aabfdc..d7cb43142 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConv.java index 08e09d3b6..80bdab0ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConvFGTS.java index d7533ecd2..0ca4dd5e7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSUf.java index d70e930c1..601434a04 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSucessaoVinc.java index f00418b0a..c182238a4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TTreiCap.java index dfc730743..acd253e52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformType.java index 8ceb3561c..7986c7897 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } + * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } - * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformsType.java index 4f95259df..8aa568852 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509DataType.java index 6e61f3ac8..a51ab8851 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Object } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509IssuerSerialType.java index 34d42cfd2..2e660e187 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/package-info.java index bde111a78..deea86609 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabprocesso/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:51 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTabProcesso/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/CanonicalizationMethodType.java index 6e8560b4f..cbcd1953d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DSAKeyValueType.java index bc348b888..b997efa9c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DigestMethodType.java index dd128dadc..e2bc53bb5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ESocial.java index 8d22ef9a9..79abbd44b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyInfoType.java index a24ea60ef..2bed3643a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link Object } - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link Element } - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyValueType.java index 1283038be..6f443e3ff 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ManifestType.java index 364820a17..25beb8f2a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectFactory.java index c506981f5..ce91f6dd6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -58,14 +58,14 @@ public class ObjectFactory { private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.tabrubrica @@ -989,30 +989,21 @@ public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** @@ -1060,4 +1051,13 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + } + } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectType.java index 3ca1c2d11..b45629f64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/PGPDataType.java index 407a0c9a7..fa17886a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RSAKeyValueType.java index 89d0ccd04..543968ff8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ReferenceType.java index 761cc1cfd..a21aeee19 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RetrievalMethodType.java index 053d41da9..6b9d91f56 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SPKIDataType.java index e772a89d7..d35ecffa2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureMethodType.java index fcf1843fa..40c1becc4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -76,8 +76,8 @@ public class SignatureMethodType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertiesType.java index 972ac4e41..5f30c9da5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertyType.java index 5fe8d31f6..5f10ba112 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link String } * {@link Object } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureType.java index d2372d95b..0a78e45e6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureValueType.java index 7b30d910f..fceaabd6b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignedInfoType.java index df21056e9..f391346ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAlvaraJudicial.java index 74e6f29be..1badf5c62 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAprend.java index 607484689..95e855543 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TContato.java index 7d9b767a1..a78074e7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDadosRubrica.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDadosRubrica.java index ed79bd381..466b374db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDadosRubrica.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDadosRubrica.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReemb.java index 3a62f0dfc..0f93199af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReembTot.java index cf031b574..562b470d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoBrasil.java index f1ca7d729..28337c4da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoExterior.java index bf1a2977a..35c3dbd95 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/THorContratual.java index b8296af56..6bb7293d1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeBeneficio.java index cb075c956..7b96eb12f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregador.java index d31232bf7..a324112ce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorCnpj.java index 6475ba026..18b3fdd49 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorExclusao.java index fc4f34c70..fee91df5b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTab.java index e3e537821..c633e09a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTabInicial.java index 42eb988fb..5b356791a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusao.java index 3b438a67b..cebbb447d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusaoProcTrab.java index 01c4ff112..93c954ccc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolha.java index 0a8e46b32..b782eb42f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensal.java index de143236b..c513254f1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensalPF.java index ac954f0fa..e86d72b40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaOpp.java index b71260d93..944be5253 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaSemRetificacao.java index ccd5d1e87..34e20292c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoContrib.java index f1d582a98..bd490a0c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoMensal.java index d01b8c806..d150011c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoTrab.java index b8b3d9505..3e5d2e4f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrab.java index 513ee812e..d5206fed6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabAdmissao.java index 7c7b1804f..adc02805b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabIndGuia.java index eb1abfcfe..6de94faa5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabJud.java index 763371ff2..9b34d5757 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabPJ.java index 2a80e34d2..2936237fa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeRubrica.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeRubrica.java index ada41e4f1..d9c1849d8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeRubrica.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeRubrica.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeTrabSemVinculo.java index 342b7a4c6..136b096f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculo.java index af77f3298..c1c70bdce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoBaixa.java index 374ffb691..44297f9dd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoSst.java index 86b75ec26..52ecfd792 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoEstagiario.java index c23c484b5..12ced068c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoInterm.java index 98412527e..7e34c5844 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoMV.java index 9e857bd41..67964f3b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoRRA.java index 9757c04e8..d684b7b19 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoSimples.java index eb63df824..54fa3f166 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TItensRemunRpps.java index d3183bba4..c0ab6a309 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TLocalTrabGeral.java index 0ae115600..3ef389019 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNascimento.java index 0cf66d139..924a38815 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNovaValidade.java index b1d6779da..78758638d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TProcJudTrab.java index e0a86f615..0bd725561 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TRemuneracao.java index 1d15d00e5..f633084bd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSexo.java index a9d4fedcb..bf3b1b92b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSim.java index 492d54aef..4095332db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSimNao.java index 11ab1d79a..6e9847c39 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConv.java index 6dba6e800..967ba1585 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConvFGTS.java index 54027c6a9..d76d8fd8e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSUf.java index 36cc51be1..55619435c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSucessaoVinc.java index 5a77491ac..b3c2a4e10 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TTreiCap.java index c3813db77..cc268654c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformType.java index 725c6026f..90fbf2765 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -75,9 +75,9 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformsType.java index 67340d5fa..6ee4289ab 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509DataType.java index 2e692e1ca..c08529370 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509IssuerSerialType.java index 7d27b9245..004a7cbe6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/package-info.java index 5b846c1a1..1b2b2aed9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tabrubrica/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:19 PM BRT +// Generated on: 2024.08.02 at 09:10:53 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTabRubrica/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/CanonicalizationMethodType.java index 9d006d624..80775583b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DSAKeyValueType.java index 08d5b832c..8937e5e95 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DigestMethodType.java index b218c9a0d..8b8356b45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -71,9 +71,9 @@ public class DigestMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ESocial.java index 526a21ac8..83b7202c4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -106,6 +106,7 @@ * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> @@ -276,6 +277,7 @@ public void setSignature(SignatureType value) { * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> @@ -595,6 +597,7 @@ public void setNrRecArqBase(String value) { * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> @@ -750,6 +753,7 @@ public List getInfoCRIRRF() { * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> * <enumeration value="593656"/> + * <enumeration value="056152"/> * <enumeration value="188951"/> * </restriction> * </simpleType> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyInfoType.java index 5b7eb6e91..575e1d10d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyValueType.java index 0653f532f..695475411 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ManifestType.java index ec02e93fe..a3f24f63e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectFactory.java index 1ac6c3311..11fbbf990 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -61,11 +61,11 @@ public class ObjectFactory { private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.tribproctrab @@ -992,21 +992,21 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -1019,21 +1019,21 @@ public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectType.java index 4f8efb625..1e5074a6d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -83,9 +83,9 @@ public class ObjectType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/PGPDataType.java index e26224303..1199200cd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RSAKeyValueType.java index 97314eea8..a600b08da 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ReferenceType.java index daf063c94..45f709bdf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RetrievalMethodType.java index 4080e35d4..d98149f65 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SPKIDataType.java index 9486ff8a3..90a13dbc9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Object } * {@link Element } + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureMethodType.java index 6488521b8..78653983a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertiesType.java index 96c7f1bdb..5ce4c973a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertyType.java index 3a1fd4030..ec7130630 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -80,9 +80,9 @@ public class SignaturePropertyType { * *

* Objects of the following type(s) are allowed in the list + * {@link Element } * {@link Object } * {@link String } - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureType.java index c1bad4b71..cf241d76d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureValueType.java index 5e0467566..0da31af67 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignedInfoType.java index 63062c7d3..85b56900b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAlvaraJudicial.java index 016feead5..d90431628 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAprend.java index 9fd188cea..d0fb39e56 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TContato.java index fbdb7d1a6..49a17ca03 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReemb.java index 3d89edddd..baae95f7e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReembTot.java index 05824aace..13cec7ba9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoBrasil.java index c15a668c1..5bdbc0482 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoExterior.java index 989daa027..1070c4091 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/THorContratual.java index a9dd7d559..89fd08ea9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeBeneficio.java index 21d1ce3e9..0d0055408 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregador.java index 3b3aba5ea..dd817f885 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorCnpj.java index 8c102b97a..6e93318b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorExclusao.java index 7d35118b2..d95fb8bb3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTab.java index b659055a3..7302a37bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTabInicial.java index 5a2bd1672..e0e42da7c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusao.java index 40769fb9b..314d519aa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusaoProcTrab.java index 2a32b7087..c23c48f28 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolha.java index 668c02c40..74a97e01d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensal.java index bd64afaa8..7dc0060f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensalPF.java index 83090c429..ba5941ce1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaOpp.java index b6de4c56c..6347a17e5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaSemRetificacao.java index 8086ee852..1e940062d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoContrib.java index 80dcf52e9..1b6411532 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoMensal.java index 8ee1844a4..7ce9a7184 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoTrab.java index 5e6ebfda6..8ea380771 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrab.java index 92b68a08f..fb22c8cf8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabAdmissao.java index 09019154e..4b8e9bacc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabIndGuia.java index e033713a2..c5c7aaea5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabJud.java index 6ae202e3f..666c35f1d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabPJ.java index 1de3e169d..f07fc1ee1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeTrabSemVinculo.java index b7f60522f..96aaaa9ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculo.java index 45c40265e..871360aaa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoBaixa.java index 323984a80..2a690f8ef 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoSst.java index 4a567782d..f79e2a468 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoEstagiario.java index 72e8995f3..8eb2cd694 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoInterm.java index b86be0537..541814a5d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoMV.java index 02a638368..a951f6bba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoRRA.java index cef48ba6e..ec7eff899 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoSimples.java index de157f15d..d5eb0216e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TItensRemunRpps.java index c8460dd4d..d882d69a0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TLocalTrabGeral.java index 7915961ea..fd6221cfb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNascimento.java index 64550a6c3..71d35fe40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNovaValidade.java index 63c5b9702..f39871493 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TProcJudTrab.java index 3c1547e27..3588d053d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TRemuneracao.java index 979017558..478fc0f52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSexo.java index cf0a5309f..73e57756e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSim.java index 0cb6d2a06..d8f69efe6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSimNao.java index ecb0adc1b..7689a7feb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConv.java index 3ed7364e4..06f1df6c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConvFGTS.java index 4bfbc44da..00d20bae2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSUf.java index 2a41c5b31..4cf6c86ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSucessaoVinc.java index 4630ce2d1..4d447c96d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TTreiCap.java index 9492306bf..5a209e594 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformType.java index bdde36343..9a88f803e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -75,10 +75,10 @@ public class TransformType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformsType.java index aa61cd016..33af62e01 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509DataType.java index 5facdbd08..c9eced164 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @@ -53,10 +53,10 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Element } * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509IssuerSerialType.java index 7dc3cf5a9..af6840678 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/package-info.java index a37183a5c..b01617fee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tribproctrab/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:20 PM BRT +// Generated on: 2024.08.02 at 09:10:55 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTribProcTrab/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/CanonicalizationMethodType.java index 8fbf4ef43..1213782d2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DSAKeyValueType.java index 1fd11ef4a..8c755ac78 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DigestMethodType.java index 1bfaffe8d..c70abfebc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ESocial.java index 9d7bb51a6..4367e22dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyInfoType.java index 6add385bf..7a3d25725 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link String } * {@link Element } + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyValueType.java index 52869235f..9d6277657 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -75,10 +75,10 @@ public class KeyValueType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ManifestType.java index 6a2447e05..a0597c690 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectFactory.java index 7db1731dd..65d3a9d8b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.tsvaltcontr @@ -947,93 +947,93 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectType.java index b99636c86..1e7cf7413 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/PGPDataType.java index ec69f90b2..9d3aa102d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RSAKeyValueType.java index 7ac1e721f..b75ea439d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ReferenceType.java index b5dbda913..fee49806c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RetrievalMethodType.java index 5b29f9524..c257b3e24 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SPKIDataType.java index f80f8c38b..f8b98dafc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -67,8 +67,8 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureMethodType.java index cc02d5dd9..f3a38cf00 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertiesType.java index 45dd7d572..dafe99e97 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertyType.java index 84e9f8fd5..bdc0a7608 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureType.java index af552ccac..45067d600 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureValueType.java index f244fdeb9..75c15a0b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignedInfoType.java index d01ec3f6f..2a891ca1f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAlvaraJudicial.java index d6d260c31..768e9018c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAprend.java index 18147b8a4..26a3aa6b9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TContato.java index 90a2f84c7..9b93ca8be 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReemb.java index dec693fcf..39abbdbcc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReembTot.java index 4963e0a84..bbb915119 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoBrasil.java index 081beda96..60fa43991 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoExterior.java index 52fba096e..77dfcd93e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/THorContratual.java index 1527d73d1..a35766e73 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeBeneficio.java index fd94881bf..b46fb5f0c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregador.java index 66c1d56fa..fb4a09895 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorCnpj.java index db68b15dd..86929decb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorExclusao.java index b4b47f9cf..53e9a6107 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTab.java index 47a6c42da..4d3a1454c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTabInicial.java index e25ec2d41..3b3343a29 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusao.java index 628a47046..518d63e1f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusaoProcTrab.java index 521036d2c..a16fb0079 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolha.java index 188f7485e..013ffd777 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensal.java index 4fb3777ce..0d2798fc5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensalPF.java index 6164f1bba..2a429727a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaOpp.java index c27408839..1266bde01 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaSemRetificacao.java index 5f2a1f740..9f6b6699d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoContrib.java index f4151a3ef..01c0a77b1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoMensal.java index f5eebf2f3..b5a508828 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoTrab.java index 2f07c0f09..82b8ac2ea 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrab.java index f880ae11d..1dce4cba3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabAdmissao.java index 2ecf46566..da208947f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabIndGuia.java index c8224873b..0308957b0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabJud.java index 37edc8939..37e2625c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabPJ.java index 658685596..a69e1621e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeTrabSemVinculo.java index f2645609b..04164a216 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculo.java index 7688188fa..9f6b55cf1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoBaixa.java index cebb6e6ad..7da7adc45 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoSst.java index 731576c4b..5d5a2f8a2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoEstagiario.java index 8026bfdfd..37ffa7652 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoInterm.java index b86f7c99c..64066ec18 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoMV.java index 26435d885..8f95a9f46 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoRRA.java index 199ec8b7a..7a26716dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoSimples.java index a87bdcae8..d71ff4722 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TItensRemunRpps.java index 2d150335d..098dfb8ca 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TLocalTrabGeral.java index f98607d3c..ef577fa11 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNascimento.java index 343925365..5383eae30 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNovaValidade.java index e014613d8..5f7a2a83e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TProcJudTrab.java index f67af634b..38c236326 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TRemuneracao.java index 442a95b40..34aaa821d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSexo.java index 7188e3bf7..b1e18e7a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSim.java index b6e26cd2c..a84ecded1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSimNao.java index 866bc6d83..51b0a8335 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConv.java index 659905b23..78077aca1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConvFGTS.java index bb9957761..2ed145963 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSUf.java index e0ac7ad21..e2028ead9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSucessaoVinc.java index 985275463..bae1229fd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TTreiCap.java index f8804e599..a1fd125ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformType.java index e71028351..925cecd86 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } * {@link String } + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformsType.java index 96e7aced2..74a38b57b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509DataType.java index 4a67cb13a..b2204ff05 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} - * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509IssuerSerialType.java index 557b0e0d7..ec719e784 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/package-info.java index 1bf5a3218..71701dfaf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvaltcontr/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:16 PM BRT +// Generated on: 2024.08.02 at 09:10:57 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTSVAltContr/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/CanonicalizationMethodType.java index 5ce9cc456..ec8891a3b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DSAKeyValueType.java index 466e6a8ca..9d14d6fe1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DigestMethodType.java index 9c0caf825..f39e545d7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ESocial.java index 5990e35b8..bdbf4d991 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -179,7 +179,7 @@ * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_nrInsc_11_14" minOccurs="0"/> * <element name="dtAdmOrig" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegPrev_1_2_3"/> * </sequence> @@ -194,7 +194,7 @@ * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjCednt" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtAdmCed"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -216,7 +216,7 @@ * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtExercOrig"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -508,7 +508,7 @@ public void setSignature(SignatureType value) { * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_nrInsc_11_14" minOccurs="0"/> * <element name="dtAdmOrig" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegPrev_1_2_3"/> * </sequence> @@ -523,7 +523,7 @@ public void setSignature(SignatureType value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjCednt" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtAdmCed"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -545,7 +545,7 @@ public void setSignature(SignatureType value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtExercOrig"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -825,7 +825,7 @@ public void setId(String value) { * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_nrInsc_11_14" minOccurs="0"/> * <element name="dtAdmOrig" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegPrev_1_2_3"/> * </sequence> @@ -840,7 +840,7 @@ public void setId(String value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjCednt" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtAdmCed"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -862,7 +862,7 @@ public void setId(String value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtExercOrig"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -1330,7 +1330,7 @@ public void setCodMotAfast(String value) { * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_nrInsc_11_14" minOccurs="0"/> * <element name="dtAdmOrig" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegPrev_1_2_3"/> * </sequence> @@ -1345,7 +1345,7 @@ public void setCodMotAfast(String value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjCednt" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtAdmCed"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -1367,7 +1367,7 @@ public void setCodMotAfast(String value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtExercOrig"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -1816,7 +1816,7 @@ public void setDtOpcFGTS(XMLGregorianCalendar value) { * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpInsc_1_2" minOccurs="0"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_nrInsc_11_14" minOccurs="0"/> * <element name="dtAdmOrig" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="tpRegTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegTrab" minOccurs="0"/> * <element name="tpRegPrev" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpRegPrev_1_2_3"/> * </sequence> @@ -2024,7 +2024,7 @@ public void setTpRegPrev(byte value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtExercOrig"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> @@ -2235,7 +2235,7 @@ public void setTpRegPrev(byte value) { * <sequence> * <element name="categOrig" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg"/> * <element name="cnpjCednt" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cnpj"/> - * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricCed" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * <element name="dtAdmCed"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}date"> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyInfoType.java index 92a98afc3..8fc62eadb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyValueType.java index 80e9a36f8..fdf00e7ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -49,8 +49,8 @@ public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -74,10 +74,10 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link String } * * diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ManifestType.java index 8b2f5c39a..72f9f2276 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectFactory.java index 22385c2c7..8ddf29d5d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.tsvinicio @@ -1019,39 +1019,48 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SubjectName(String value) { + return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509SKI(byte[] value) { + return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) + public JAXBElement createX509DataTypeX509Certificate(byte[] value) { + return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** @@ -1064,48 +1073,39 @@ public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInte } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509SKI(byte[] value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) - public JAXBElement createX509DataTypeX509Certificate(byte[] value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectType.java index 60de77b9f..b6c13e42e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/PGPDataType.java index f515975a8..322e399e3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -54,8 +54,8 @@ public class PGPDataType { @XmlElementRefs({ - @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List content; @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -89,9 +89,9 @@ public class PGPDataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RSAKeyValueType.java index 8862b6e34..1471e1196 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ReferenceType.java index 305b5e281..3ec60a7dc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RetrievalMethodType.java index a0e1d3b08..6df185ab4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SPKIDataType.java index e6d275949..90b8acbe7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -67,9 +67,9 @@ public class SPKIDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Element } * {@link Object } + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureMethodType.java index 1156c0fe6..6c4e8d7c1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertiesType.java index de0cf8521..98348b1e3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertyType.java index b194a13ec..8785faff5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureType.java index 9dbf073e3..efdf3ace3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureValueType.java index c1eee4d48..735240361 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignedInfoType.java index 79211b605..4c3949ed5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAlvaraJudicial.java index 0f430ec58..8f9342e18 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAprend.java index a41ce9fce..b7388ee88 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TContato.java index 4611605de..4c07392c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReemb.java index 719c06851..856d699f2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReembTot.java index b826b1bbd..66d50bbfd 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoBrasil.java index 7c02300fe..35b687c50 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoExterior.java index 0ae67f6ee..9ff0e5463 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/THorContratual.java index ba0e75ef8..65a196116 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeBeneficio.java index 790fd7eae..3617c500f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregador.java index 73bb004b8..dd40a941c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorCnpj.java index f6af61a2b..0ffb4a1af 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorExclusao.java index 9585dcb0e..ec7408379 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTab.java index 001a2e28a..a2937a4b2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTabInicial.java index a123b57a9..09f8ba3fb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusao.java index 956f61f34..23c3d5bce 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusaoProcTrab.java index 499eb40f4..4b517adfe 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolha.java index fc3c2cc29..35ad4fc60 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensal.java index 86086e55d..e86a4b696 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensalPF.java index bccf01d86..97625b3c3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaOpp.java index 19af4c544..186c6f882 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaSemRetificacao.java index 4db4f8781..36de6d155 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoContrib.java index a236f7ba4..0a0a416bc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoMensal.java index 9bf485b71..35673f256 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoTrab.java index 61b914d03..2317b78f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrab.java index 4e4046114..1c53db480 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabAdmissao.java index 64aa6defc..ccfe1fc3b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabIndGuia.java index 3ea171423..67ea513ac 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabJud.java index 002c74193..18d600211 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabPJ.java index 1d97f3ba7..6bc2026f6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeTrabSemVinculo.java index 10656ffea..59d7fe658 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculo.java index da661ff77..372982cf5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoBaixa.java index 2b07dbd83..efa57b867 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoSst.java index 81848e0cc..297b2ef37 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoEstagiario.java index d2a6cd565..3de46ee7f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoInterm.java index 4c49791ea..12a700f50 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoMV.java index efd7594e7..f04f1b259 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoRRA.java index e2b69472f..1eddc9c92 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoSimples.java index 786f301b4..92082027a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TItensRemunRpps.java index 99c3d75f0..374e1d000 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TLocalTrabGeral.java index db0d17aa7..e52361ff7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNascimento.java index 993198621..90c039458 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNovaValidade.java index 1f0f3f977..98d41df49 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TProcJudTrab.java index f73aba47b..b41924037 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TRemuneracao.java index fef0e7e30..f738a355a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSexo.java index a1ff06c24..08e7b304b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSim.java index d8533bda0..b9e1cf794 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSimNao.java index 0d6597955..8b5b5d404 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConv.java index 44ed45d3e..a923021b7 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConvFGTS.java index 63cfc59e7..b7fe495a5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSUf.java index ea904868b..a529dc3f8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSucessaoVinc.java index 3c793fdf9..645400308 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TTreiCap.java index 076a3e936..fe63ce544 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformType.java index 74f80d93a..020fff0b4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformsType.java index 55362e2cf..8e3cc7b2b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509DataType.java index a498aa407..ef9d5d726 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -81,12 +81,12 @@ public class X509DataType { *

* Objects of the following type(s) are allowed in the list * {@link Element } - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509IssuerSerialType.java index 272bb661c..6db0301bb 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/package-info.java index 17b655966..903c07de1 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvinicio/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:10:58 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTSVInicio/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/CanonicalizationMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/CanonicalizationMethodType.java index 46782b414..b817a00f5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/CanonicalizationMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/CanonicalizationMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DSAKeyValueType.java index 5baa8a00e..0f031d542 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DigestMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DigestMethodType.java index 36b00126c..9cf572d44 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DigestMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/DigestMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -72,8 +72,8 @@ public class DigestMethodType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ESocial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ESocial.java index 30b181a8d..c2092795a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ESocial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ESocial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyInfoType.java index dfc0e738f..656f5208d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -60,13 +60,13 @@ public class KeyInfoType { @XmlElementRefs({ - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -95,16 +95,16 @@ public class KeyInfoType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} - * {@link Object } - * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link String } + * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyValueType.java index 7a29b4a03..7149f6234 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/KeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -74,11 +74,11 @@ public class KeyValueType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link Object } * {@link String } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Element } - * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ManifestType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ManifestType.java index 121944089..74d44220f 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ManifestType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ManifestType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectFactory.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectFactory.java index 9d8578ac7..a93976f6a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectFactory.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -56,16 +56,16 @@ public class ObjectFactory { private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); - private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.jus.tst.esocial.esquemas.eventos.tsvtermino @@ -955,30 +955,12 @@ public JAXBElement createSignatureProperty(SignaturePrope } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) - public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) + public JAXBElement createTransformTypeXPath(String value) { + return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -1027,21 +1009,39 @@ public JAXBElement createX509DataTypeX509Certificate(byte[] value) { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) - public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} * */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) + public JAXBElement createSPKIDataTypeSPKISexp(byte[] value) { + return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, byte[].class, SPKIDataType.class, ((byte[]) value)); } } diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectType.java index ddd4b55e4..e954c223b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ObjectType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -84,8 +84,8 @@ public class ObjectType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/PGPDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/PGPDataType.java index d6d8138aa..98c43214c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/PGPDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/PGPDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -66,8 +66,8 @@ public class PGPDataType { *

* You are getting this "catch-all" property because of the following reason: * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 220 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd - * line 215 of file:/home/tiago/desenv/git/esocial/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 220 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd + * line 215 of file:/workspace/src/esocial-esquemas/src/main/resources/xsd/xmldsig-core-schema.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: @@ -88,10 +88,10 @@ public class PGPDataType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RSAKeyValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RSAKeyValueType.java index f0c569311..bd8888898 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RSAKeyValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RSAKeyValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ReferenceType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ReferenceType.java index 88163b678..6260a88c8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ReferenceType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/ReferenceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RetrievalMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RetrievalMethodType.java index f22aeca41..4cefbbe48 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RetrievalMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/RetrievalMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SPKIDataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SPKIDataType.java index dfd0f8027..f06ef5fe2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SPKIDataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SPKIDataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureMethodType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureMethodType.java index 0181f0445..7dd733817 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureMethodType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureMethodType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -75,9 +75,9 @@ public class SignatureMethodType { * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertiesType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertiesType.java index e3d15ce0c..82179e3b2 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertiesType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertiesType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertyType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertyType.java index b3e07a81b..8436f535c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertyType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignaturePropertyType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -81,8 +81,8 @@ public class SignaturePropertyType { *

* Objects of the following type(s) are allowed in the list * {@link Object } - * {@link String } * {@link Element } + * {@link String } * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureType.java index f2669a13c..c2321e68e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureValueType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureValueType.java index 24665bdfd..8f0211906 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureValueType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignatureValueType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignedInfoType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignedInfoType.java index 3e32a6977..7c0878ea3 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignedInfoType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/SignedInfoType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAlvaraJudicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAlvaraJudicial.java index 3cd0b8122..0e3446de5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAlvaraJudicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAlvaraJudicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAprend.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAprend.java index 6abe2c045..37799b081 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAprend.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TAprend.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TContato.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TContato.java index 5e8e7d807..caf0b3281 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TContato.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TContato.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReemb.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReemb.java index 96f727c05..90034f299 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReemb.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReemb.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReembTot.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReembTot.java index 2c62979d7..931460baa 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReembTot.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TDetReembTot.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoBrasil.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoBrasil.java index 467886dd3..21b2e17fc 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoBrasil.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoBrasil.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoExterior.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoExterior.java index fa2467560..695118d6e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoExterior.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TEnderecoExterior.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/THorContratual.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/THorContratual.java index 6964982da..852352615 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/THorContratual.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/THorContratual.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeBeneficio.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeBeneficio.java index a5a5c305a..c820d6a81 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeBeneficio.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeBeneficio.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregador.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregador.java index d6170ed71..397bde62c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregador.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregador.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorCnpj.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorCnpj.java index e9b96c827..4c1379251 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorCnpj.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorCnpj.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorExclusao.java index ee8521bb5..af8b22e64 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEmpregadorExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTab.java index 55271140a..88dfc31ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTabInicial.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTabInicial.java index e0ad54e83..a3c683a52 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTabInicial.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoEvtTabInicial.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusao.java index d11279912..1aa9d70c6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusaoProcTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusaoProcTrab.java index a2f149e31..f2719f947 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusaoProcTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoExclusaoProcTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolha.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolha.java index 9754188f0..a630fee32 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolha.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolha.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensal.java index 54c0d5947..3ecb23627 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensalPF.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensalPF.java index d7137ed55..68c6437f4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensalPF.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaMensalPF.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaOpp.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaOpp.java index 1d159a0dd..44a27396e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaOpp.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaOpp.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaSemRetificacao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaSemRetificacao.java index e7f4ce2e2..f50e48014 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaSemRetificacao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoFolhaSemRetificacao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoContrib.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoContrib.java index 468702218..6f728b4db 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoContrib.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoContrib.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoMensal.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoMensal.java index 979ff66b0..5d5698a8e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoMensal.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoMensal.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoTrab.java index 0f8fd1448..6826158ee 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoRetornoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrab.java index 6da6abbf0..f89e5b102 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabAdmissao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabAdmissao.java index 00b96918c..0c10b149d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabAdmissao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabAdmissao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabIndGuia.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabIndGuia.java index caacf5b78..d68ba515a 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabIndGuia.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabIndGuia.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabJud.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabJud.java index 2cdf41ec8..f36994667 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabJud.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabJud.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabPJ.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabPJ.java index f269341c4..4d2f3c315 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabPJ.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeEventoTrabPJ.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeTrabSemVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeTrabSemVinculo.java index 6c249c073..0472fc09e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeTrabSemVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeTrabSemVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculo.java index cedf3c101..6d495bb27 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoBaixa.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoBaixa.java index 506851a69..7298f0ce0 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoBaixa.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoBaixa.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -27,7 +27,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_codigo_esocial"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_matricula"/> * </sequence> * </restriction> * </complexContent> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoSst.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoSst.java index 5b4c665b2..39de452bf 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoSst.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TIdeVinculoSst.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -28,7 +28,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cpfTrab" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_cpfTrab"/> - * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricula" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="codCateg" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_codCateg" minOccurs="0"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoEstagiario.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoEstagiario.java index 04616e01c..f1e55dc40 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoEstagiario.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoEstagiario.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoInterm.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoInterm.java index 3b15b09bb..63ad57c60 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoInterm.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoInterm.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoMV.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoMV.java index 1e840a84c..7a7a32fc8 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoMV.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoMV.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoRRA.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoRRA.java index de2920900..8aa79b715 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoRRA.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoRRA.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoSimples.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoSimples.java index 93b464b71..79978143c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoSimples.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TInfoSimples.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TItensRemunRpps.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TItensRemunRpps.java index 6511ef78a..3636c6222 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TItensRemunRpps.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TItensRemunRpps.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TLocalTrabGeral.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TLocalTrabGeral.java index 5f3c1b895..d992d6f9e 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TLocalTrabGeral.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TLocalTrabGeral.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNascimento.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNascimento.java index 049b822bb..56948f328 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNascimento.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNascimento.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNovaValidade.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNovaValidade.java index a9bfb9ac1..37bc8f93b 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNovaValidade.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TNovaValidade.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TProcJudTrab.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TProcJudTrab.java index 7905060c4..1d419e5a6 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TProcJudTrab.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TProcJudTrab.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TRemuneracao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TRemuneracao.java index 9ceb661e4..ae175af06 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TRemuneracao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TRemuneracao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSexo.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSexo.java index 6b07e5e01..c55d31199 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSexo.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSexo.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSim.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSim.java index cccbb0045..73c1c9223 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSim.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSim.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSimNao.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSimNao.java index 6eec748f5..bf8f4f41d 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSimNao.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSSimNao.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConv.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConv.java index 39274d204..b337e681c 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConv.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConv.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -29,6 +29,7 @@ * <enumeration value="G"/> * <enumeration value="H"/> * <enumeration value="I"/> + * <enumeration value="J"/> * </restriction> * </simpleType> * @@ -91,7 +92,13 @@ public enum TSTpAcConv { * Sentença judicial (exceto reclamatória trabalhista) * */ - I; + I, + + /** + * Parcelas complementares conhecidas após o fechamento da folha + * + */ + J; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConvFGTS.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConvFGTS.java index 4b1785fda..a3f30a904 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConvFGTS.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSTpAcConvFGTS.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -22,6 +22,7 @@ * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="E"/> * <enumeration value="H"/> + * <enumeration value="I"/> * </restriction> * </simpleType> * @@ -42,7 +43,13 @@ public enum TSTpAcConvFGTS { * Declaração de base de cálculo de FGTS anterior ao início do FGTS Digital * */ - H; + H, + + /** + * Sentença judicial (exceto reclamatória trabalhista) + * + */ + I; public String value() { return name(); diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSUf.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSUf.java index d80aecd04..348df0350 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSUf.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSUf.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSucessaoVinc.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSucessaoVinc.java index da581d206..e56e2eda5 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSucessaoVinc.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TSucessaoVinc.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -28,7 +28,7 @@ * <sequence> * <element name="tpInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_tpInsc_1_2"/> * <element name="nrInsc" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_nrInsc_11_14"/> - * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_codigo_esocial" minOccurs="0"/> + * <element name="matricAnt" type="{http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00}TS_matricula" minOccurs="0"/> * <element name="dtAdm" type="{http://www.w3.org/2001/XMLSchema}date"/> * </sequence> * </restriction> diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TTreiCap.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TTreiCap.java index 21780748a..70a36b895 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TTreiCap.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TTreiCap.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformType.java index 03613ca76..3b1ecdef9 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -76,9 +76,9 @@ public class TransformType { *

* Objects of the following type(s) are allowed in the list * {@link Object } + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link String } * {@link Element } - * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformsType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformsType.java index b6a53fcd4..e71af6d72 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformsType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/TransformsType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509DataType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509DataType.java index 80dbded60..95f74fa26 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509DataType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509DataType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @@ -53,11 +53,11 @@ public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -80,13 +80,13 @@ public class X509DataType { * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * {@link Element } + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * * */ diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509IssuerSerialType.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509IssuerSerialType.java index 4c486d6ab..08c6b48d4 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509IssuerSerialType.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/X509IssuerSerialType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // diff --git a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/package-info.java b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/package-info.java index 38adc1a48..1d63965ba 100644 --- a/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/package-info.java +++ b/src/esocial-esquemas/src/main/java/br/jus/tst/esocial/esquemas/eventos/tsvtermino/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2023.09.04 at 05:31:17 PM BRT +// Generated on: 2024.08.02 at 09:11:00 AM BRT // @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.esocial.gov.br/schema/evt/evtTSVTermino/v_S_01_02_00", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) From 7c57ced6192fe60f09d2cc6a0f4fe2672162ebe7 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Fri, 2 Aug 2024 10:18:32 -0300 Subject: [PATCH 22/25] ambiente configurado com vpn tribunal --- .devcontainer/docker-compose.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 04d7beb17..64c2ee979 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -42,8 +42,10 @@ services: networks: esocial-net: - name: esocial-net driver: bridge + ipam: + config: + - subnet: 172.16.57.0/24 volumes: postgres: \ No newline at end of file From 5796c80e40ddf7e9b900f3a4612313c9c10998d8 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Tue, 13 Aug 2024 17:50:02 -0300 Subject: [PATCH 23/25] ajustes instalador --- .devcontainer/iniciar.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/iniciar.sh b/.devcontainer/iniciar.sh index 02cda3106..4a080a81f 100755 --- a/.devcontainer/iniciar.sh +++ b/.devcontainer/iniciar.sh @@ -36,5 +36,6 @@ sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINH sed -i "s/^esocialjt.cnpj-empregador=.*/esocialjt.cnpj-empregador=${CNPJ_TRIBUNAL}/" ./src/esocial-jt-service/src/main/resources/application.properties sed -i "s|^esocialjt.senhaCertificado=.*|esocialjt.senhaCertificado=$(printf '%s\n' "$SENHA_CERTIFICADO" | sed 's|[&/\]|\\&|g')|" ./src/esocial-jt-service/src/main/resources/application.properties sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINHO_CERTIFICADO}|" ./src/esocial-jt-service/src/main/resources/application.properties +sed -i "s|^spring.datasource.url=.*|spring.datasource.url=jdbc:postgresql://esocial-db/postgres|" ./src/esocial-jt-service/src/main/resources/application.properties echo "Configuração concluída." From 80c76789caf68f6ac7f7a76226e66b749fdc8cc7 Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Wed, 14 Aug 2024 13:10:03 -0300 Subject: [PATCH 24/25] =?UTF-8?q?Remo=C3=A7=C3=A3o=20do=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 153 ------------------------------------------------- 1 file changed, 153 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index f997c9298..000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,153 +0,0 @@ -variables: - PROJECT_NAME: esocial-jt - REGISTRY_HOST: os311-registry.tjdft.jus.br - REGISTRY_USER: builder - IMAGE_NAME_STAGE: esocialapp-stage - IMAGE_NAME_PRODUCTION: esocialapp-production -stages: - - build - - deploy - -############################ -### TEMPLATE PARA DEPLOY -############################ -.template_deploy: &template_deploy - image: kaniko-project/executor:debug - stage: deploy - script: - - echo "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" - - mkdir -p /kaniko/.docker - - echo "{\"auths\":{\"${REGISTRY_HOST}\":{\"auth\":\"$(printf "%s:%s" "${REGISTRY_USER}" "${SA_USER_TOKEN}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json - - >- - /kaniko/executor - --context "${CONTEXT_DIR}" - --dockerfile "${DOCKERFILE_DIR}" - --build-arg "release='${CI_COMMIT_SHA}'" - --destination "${REGISTRY_HOST}/${IMAGE_NAME}/${SERVICE_NAME}:${IMAGE_TAG}" - --registry-mirror "nexuspull.tjdft.jus.br" - -build_backend: - image: adoptopenjdk/maven-openjdk8 - stage: build - only: - - tags - script: - - cd src/ - - mvn -B verify - artifacts: - when: on_success - paths: - - ${CI_PROJECT_DIR}/src/esocial-jt-service/target - expire_in: 1 day - -build_frontend: - image: ${CI_TEMPLATE_REGISTRY_HOST}node:16-bullseye - stage: build - only: - - tags - script: - - cd frontend/ - - yarn install --frozen-lockfile - - yarn lint - - yarn test - - yarn build - artifacts: - when: on_success - paths: - - frontend/build - expire_in: 1 day - dependencies: - - build_backend - -deploy_backend_desenv: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^stage-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/src - IMAGE_NAME: ${IMAGE_NAME_STAGE} - SERVICE_NAME: esocial-jt-backend - IMAGE_TAG: desenv - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE - dependencies: - - build_backend - -deploy_backend_desenv_teste: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^teste-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/src - IMAGE_NAME: ${IMAGE_NAME_STAGE} - SERVICE_NAME: esocial-jt-backend-teste - IMAGE_TAG: desenv-teste - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE - dependencies: - - build_backend - -deploy_frontend_desenv_teste: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^teste-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend - IMAGE_NAME: ${IMAGE_NAME_STAGE} - SERVICE_NAME: esocial-jt-frontend-teste - IMAGE_TAG: desenv-teste - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE - dependencies: - - build_backend - - build_frontend - -deploy_frontend_desenv: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^stage-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend - IMAGE_NAME: ${IMAGE_NAME_STAGE} - SERVICE_NAME: esocial-jt-frontend - IMAGE_TAG: desenv - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_STAGE - dependencies: - - build_backend - - build_frontend - -deploy_backend_prod: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^production-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/src/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/src - IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} - SERVICE_NAME: esocial-jt-backend - IMAGE_TAG: production - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_PROD - dependencies: - - build_backend - -deploy_frontend_prod: - <<: *template_deploy - rules: - - if: $CI_COMMIT_TAG =~ /^production-.*$/ - variables: - DOCKERFILE_DIR: ${CI_PROJECT_DIR}/frontend/Dockerfile - CONTEXT_DIR: ${CI_PROJECT_DIR}/frontend - IMAGE_NAME: ${IMAGE_NAME_PRODUCTION} - SERVICE_NAME: esocial-jt-frontend - IMAGE_TAG: production - before_script: - - SA_USER_TOKEN=$SA_USER_TOKEN_PROD - dependencies: - - build_backend - - build_frontend From 4bed3a975ffaba8ab1e86cf255e70f3da9b21abb Mon Sep 17 00:00:00 2001 From: Marcelo Vinicius de Sousa Campos Date: Wed, 14 Aug 2024 13:31:37 -0300 Subject: [PATCH 25/25] =?UTF-8?q?remo=C3=A7=C3=A3o=20ambiente=20desenv=20v?= =?UTF-8?q?scode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .devcontainer/Dockerfile | 37 ------------------------ .devcontainer/README.md | 29 ------------------- .devcontainer/devcontainer.json | 26 ----------------- .devcontainer/docker-compose.yml | 49 -------------------------------- .devcontainer/download_xsd.sh | 35 ----------------------- .devcontainer/iniciar.sh | 41 -------------------------- 6 files changed, 217 deletions(-) delete mode 100644 .devcontainer/Dockerfile delete mode 100644 .devcontainer/README.md delete mode 100644 .devcontainer/devcontainer.json delete mode 100644 .devcontainer/docker-compose.yml delete mode 100755 .devcontainer/download_xsd.sh delete mode 100755 .devcontainer/iniciar.sh diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index ed49c30e7..000000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,37 +0,0 @@ -# Use a imagem base com OpenJDK 8 e Maven -FROM adoptopenjdk/maven-openjdk8 - -# Configurações de ambiente -ENV LANG=en_US.UTF-8 \ - LANGUAGE=en_US.UTF-8 \ - LC_CTYPE=en_US.UTF-8 \ - LC_ALL=en_US.UTF-8 \ - TZ=America/Sao_Paulo \ - DEBIAN_FRONTEND=noninteractive - -# Atualize e instale dependências adicionais -RUN apt-get update && \ - # comentei porque a aplicação utiliza ainda a versão 8 do openjdk - # apt-get upgrade -y && \ - apt-get install -y tzdata curl git zip && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - -# Configurar o fuso horário -RUN ln -fs /usr/share/zoneinfo/America/Sao_Paulo /etc/localtime && \ - echo "America/Sao_Paulo" > /etc/timezone && \ - dpkg-reconfigure -f noninteractive tzdata - -# Criar e usar um usuário não root -RUN addgroup esocial && adduser --disabled-password --gecos "" --ingroup esocial esocial -USER esocial - -# Configurar o diretório de trabalho -WORKDIR /workspace - -# Expor a porta necessária -EXPOSE 8080 - -# Comando para manter o contêiner ativo -CMD ["tail", "-f", "/dev/null"] - diff --git a/.devcontainer/README.md b/.devcontainer/README.md deleted file mode 100644 index 78f7b7ea6..000000000 --- a/.devcontainer/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# Como instalar o ambiente usando VSCODE - -## Instalação inicial - -1) Na raiz do projeto, rode esse comando abaixo: - -```shellscript -$ ./.devcontainer/iniciar.sh -``` - -Obs.: Não comitar o arquivo [application.properties](../src/esocial-jt-service/src/main/resources/application.properties) as variáveis alteradas com relação ao certificado. - -2) Abre o projeto em modo `devcontainer` e aguarde toda a instalação - -## Atualizar os arquivos XSDs - -1) Dentro do devcontainer, rode o comando que vai substituir todos os arquivos XSDs: - -```shellscript -$ ./.devcontainer/download_xsd.sh -``` - -2) Depois rode o comando abaixo para recompilar e testar tudo: - -``shellscript -$ mvn clean verify -f /workspace/src/pom.xml -``` - -3) Para subir a aplicação, vá no ícone à esquerda chamado de `Spring Boot Dashboard` e dê o play no app `esocial-jt-service` e aguarde subir a aplicação. diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 8f6faa535..000000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "esocial DevContainer", - "dockerComposeFile": "docker-compose.yml", - "service": "app", - "runServices": [ - "frontend", - "db" - ], - "workspaceFolder": "/workspace", - "postCreateCommand": "mvn clean verify -f /workspace/src/pom.xml", - "remoteUser": "esocial", - "shutdownAction": "stopCompose", - "customizations": { - "vscode": { - "extensions": [ - "vscjava.vscode-java-pack", - "ms-azuretools.vscode-docker", - "redhat.vscode-yaml", - "vmware.vscode-boot-dev-pack" - ] - } - }, - "mounts": [ - "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached" - ] -} \ No newline at end of file diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml deleted file mode 100644 index 04d7beb17..000000000 --- a/.devcontainer/docker-compose.yml +++ /dev/null @@ -1,49 +0,0 @@ -version: "3.5" -services: - frontend: - image: tstlabs/esocial-jt-frontend:latest - container_name: esocial-jt-frontend - ports: - - "80:8080" - depends_on: - - app - networks: - - esocial-net - - app: - build: - context: . - dockerfile: Dockerfile - container_name: esocial-jt-service - ports: - - "8080:8080" - depends_on: - - db - networks: - - esocial-net - volumes: - - "../config:/config" - environment: - - spring.datasource.url=jdbc:postgresql://esocial-db/postgres - - spring.flyway.baseline-on-migrate=true - - esocialjt.arquivoCertificado=/config/esocial.pfx - - db: - image: postgres:10 - container_name: esocial-db - volumes: - - postgres:/var/lib/postgresql/data - ports: - - "5432:5432" - networks: - - esocial-net - environment: - - POSTGRES_PASSWORD=esocial - -networks: - esocial-net: - name: esocial-net - driver: bridge - -volumes: - postgres: \ No newline at end of file diff --git a/.devcontainer/download_xsd.sh b/.devcontainer/download_xsd.sh deleted file mode 100755 index 3cfa49df7..000000000 --- a/.devcontainer/download_xsd.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -# Solicitar a URL do arquivo ZIP como input -read -p "Insira a URL do arquivo ZIP: " ZIP_URL - -# Diretório de destino para os arquivos XSD -DEST_DIR="/workspace/src/esocial-esquemas/src/main/resources/xsd" - -# Baixar o arquivo ZIP usando curl -echo "Baixando o arquivo ZIP..." -curl -sSLO "$ZIP_URL" - -# Verificar se o download foi concluído com sucesso -if [ $? -ne 0 ]; then - echo "Erro ao baixar o arquivo ZIP." - exit 1 -fi - -# Criar o diretório de destino, se ainda não existir -mkdir -p "$DEST_DIR" - -# Extrair os arquivos XSD para o diretório de destino -echo "Extraindo os arquivos XSD..." -unzip -qq "$(basename "$ZIP_URL")" -d "$DEST_DIR" - -# Verificar se a extração foi bem-sucedida -if [ $? -ne 0 ]; then - echo "Erro ao extrair os arquivos XSD." - exit 1 -fi - -# Remover o arquivo ZIP após a extração -rm "$(basename "$ZIP_URL")" - -echo "Arquivos XSD extraídos com sucesso em: $DEST_DIR" \ No newline at end of file diff --git a/.devcontainer/iniciar.sh b/.devcontainer/iniciar.sh deleted file mode 100755 index 4a080a81f..000000000 --- a/.devcontainer/iniciar.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -CNPJ_TRIBUNAL=531954000120 -CAMINHO_CERTIFICADO=/config/esocial.pfx - -# Limpa containers, volumes e caches -echo -e "\n" - docker-compose down -v --remove-orphans && \ - docker volume prune --force && \ - docker system prune --force - -# Loop para solicitar o diretório de origem do certificado até que um caminho válido seja fornecido -while true; do - read -p "Insira somente o diretório completo onde está o certificado esocial.pfx: " DIRETORIO_ORIGEM - echo ${DIRETORIO_ORIGEM} - if [ -f "${DIRETORIO_ORIGEM}/esocial.pfx" ]; then - cp "${DIRETORIO_ORIGEM}/esocial.pfx" ".${CAMINHO_CERTIFICADO}" - break - else - echo "O arquivo esocial.pfx não foi encontrado no diretório especificado. Tente novamente." - fi -done - -# Copiar o arquivo de exemplo para o arquivo de configuração real -cp ./config/application.properties.example ./config/application.properties - -# Solicitar a senha do certificado ao usuário de forma silenciosa -read -s -p "Insira a senha do certificado eSocial: " SENHA_CERTIFICADO - -# Substituir os valores dos atributos no arquivo application.properties da pasta config/ -sed -i "s/^esocialjt.cnpj-empregador=.*/esocialjt.cnpj-empregador=${CNPJ_TRIBUNAL}/" ./config/application.properties -sed -i "s|^esocialjt.senhaCertificado=.*|esocialjt.senhaCertificado=$(printf '%s\n' "$SENHA_CERTIFICADO" | sed 's|[&/\]|\\&|g')|" ./config/application.properties -sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINHO_CERTIFICADO}|" ./config/application.properties - -# Substituir os valores dos atributos no arquivo application.properties da pasta /src/esocial-jt-service/ -sed -i "s/^esocialjt.cnpj-empregador=.*/esocialjt.cnpj-empregador=${CNPJ_TRIBUNAL}/" ./src/esocial-jt-service/src/main/resources/application.properties -sed -i "s|^esocialjt.senhaCertificado=.*|esocialjt.senhaCertificado=$(printf '%s\n' "$SENHA_CERTIFICADO" | sed 's|[&/\]|\\&|g')|" ./src/esocial-jt-service/src/main/resources/application.properties -sed -i "s|^esocialjt.arquivoCertificado=.*|esocialjt.arquivoCertificado=${CAMINHO_CERTIFICADO}|" ./src/esocial-jt-service/src/main/resources/application.properties -sed -i "s|^spring.datasource.url=.*|spring.datasource.url=jdbc:postgresql://esocial-db/postgres|" ./src/esocial-jt-service/src/main/resources/application.properties - -echo "Configuração concluída."